FFVIIString.h 289 B

123456789101112131415161718192021
  1. #ifndef FFVIISTRING_H
  2. #define FFVIISTRING_H
  3. #include <Ogre.h>
  4. #include <vector>
  5. typedef std::vector< unsigned char > FFVIIString;
  6. // converter
  7. FFVIIString StringToFFVIIString( const Ogre::String& string );
  8. Ogre::String FFVIIStringToString( const FFVIIString& string );
  9. #endif