tahoma2d/toonz/sources/toonzlib/xshhandlemanager.h

35 lines
753 B
C
Raw Normal View History

2016-05-17 03:04:11 +12:00
#pragma once
2016-03-19 06:57:51 +13:00
#ifndef XSHHANDLEMANAGER_INCLUDED
#define XSHHANDLEMANAGER_INCLUDED
#include "toonz/tstageobjecttree.h"
//===============================================================
// Forward declarations
class TXsheet;
class ToonzScene;
//===============================================================
//*********************************************************************************
// XshHandleManager declaration
//*********************************************************************************
class XshHandleManager : public HandleManager
{
TXsheet *m_xsh;
public:
XshHandleManager(TXsheet *xsh) : m_xsh(xsh) {}
TPointD getHandlePos(
const TStageObjectId &id,
const std::string &handle,
int row) const;
};
#endif