OpenSceneGraph/src/osgPlugins/ive/Text.h
Robert Osfield dd3db860a2 From Carlo Camporesi, add support for text into .ive plugin, tweak by
Robert Osfield to allow font names to be exported correctly with extension
2005-04-08 13:06:14 +00:00

16 lines
250 B
C++

#ifndef IVE_TEXT
#define IVE_TEXT 1
#include <osgText/Text>
#include "ReadWrite.h"
namespace ive{
class Text : public osgText::Text, public ReadWrite {
public:
void write(DataOutputStream* out);
void read(DataInputStream* in);
};
}
#endif