Skip to content

Commit

Permalink
SceneRootObject: getClassName() override
Browse files Browse the repository at this point in the history
  • Loading branch information
Fedr committed Dec 26, 2024
1 parent 4739ccd commit 67628a9
Showing 1 changed file with 2 additions and 0 deletions.
2 changes: 2 additions & 0 deletions source/MRMesh/MRSceneRoot.h
Original file line number Diff line number Diff line change
Expand Up @@ -17,6 +17,8 @@ class MRMESH_CLASS SceneRootObject final : public Object
SceneRootObject( ProtectedStruct, const SceneRootObject& obj ) : SceneRootObject( obj ) {}
constexpr static const char* TypeName() noexcept { return "RootObject"; }
constexpr static const char* RootName() noexcept { return "Root"; }
virtual std::string getClassName() const override { return "Root"; }
virtual std::string getClassNameInPlural() const override { return "Roots"; }
virtual const char* typeName() const override { return TypeName(); }
virtual void setAncillary( bool ) override { Object::setAncillary( false ); }
virtual bool select( bool ) override { return Object::select( false ); }
Expand Down

0 comments on commit 67628a9

Please sign in to comment.