From 6f61b34590f261c5577d2ca589b9e013199a1269 Mon Sep 17 00:00:00 2001 From: Robert Osfield Date: Tue, 27 Jan 2004 14:47:41 +0000 Subject: [PATCH] Added className() method to GlyphTexture for debugging purposes. --- include/osgText/Font | 2 ++ 1 file changed, 2 insertions(+) diff --git a/include/osgText/Font b/include/osgText/Font index bbac641f6..084afea5e 100644 --- a/include/osgText/Font +++ b/include/osgText/Font @@ -183,6 +183,8 @@ public: public: GlyphTexture(); + + const char* className() const { return "GlyphTexture"; } /** return -1 if *this < *rhs, 0 if *this==*rhs, 1 if *this>*rhs.*/ virtual int compare(const osg::StateAttribute& rhs) const;