Added initial shell of PushButton implementation

This commit is contained in:
Robert Osfield
2014-05-16 10:38:40 +00:00
parent 03fc0c3662
commit 3e00764649
10 changed files with 243 additions and 20 deletions

View File

@@ -31,7 +31,6 @@ public:
std::string& getText() { return _text; }
const std::string& getText() const { return _text; }
virtual void createGraphicsImplementation();
protected:
@@ -41,7 +40,6 @@ protected:
// implementation detail
osg::ref_ptr<osgText::Text> _textDrawable;
osg::ref_ptr<osg::Geode> _textGeode;
};
}