dd3db860a2
Robert Osfield to allow font names to be exported correctly with extension
16 lines
250 B
C++
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
|