| 12 | // ========== SelectionSet Handling ========== |
| 13 | |
| 14 | class ScriptSelectionSet |
| 15 | { |
| 16 | private: |
| 17 | selection::ISelectionSetPtr _set; |
| 18 | |
| 19 | static std::string _emptyStr; |
| 20 | public: |
| 21 | ScriptSelectionSet(const selection::ISelectionSetPtr& set); |
| 22 | |
| 23 | const std::string& getName(); |
| 24 | bool empty(); |
| 25 | void select(); |
| 26 | void deselect(); |
| 27 | void clear(); |
| 28 | void assignFromCurrentScene(); |
| 29 | }; |
| 30 | |
| 31 | // Wrap around the ISelectionSetManager::Visitor interface |
| 32 | class SelectionSetVisitorWrapper : |
no outgoing calls
no test coverage detected