1 #pragma once
2 
3 #ifndef XSHHANDLEMANAGER_INCLUDED
4 #define XSHHANDLEMANAGER_INCLUDED
5 
6 #include "toonz/tstageobjecttree.h"
7 
8 //===============================================================
9 
10 //    Forward declarations
11 
12 class TXsheet;
13 class ToonzScene;
14 
15 //===============================================================
16 
17 //*********************************************************************************
18 //    XshHandleManager  declaration
19 //*********************************************************************************
20 
21 class XshHandleManager final : public HandleManager {
22   TXsheet *m_xsh;
23 
24 public:
XshHandleManager(TXsheet * xsh)25   XshHandleManager(TXsheet *xsh) : m_xsh(xsh) {}
26 
27   TPointD getHandlePos(const TStageObjectId &id, const std::string &handle,
28                        int row) const override;
29 };
30 
31 #endif
32