Files
OpenSceneGraph/src/osgPlugins/ive/Text.h
2016-05-31 10:28:08 +01:00

16 lines
232 B
C++

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