Progress on text support

This commit is contained in:
Joshua Granick
2015-03-07 20:57:00 -08:00
parent f88a35f890
commit 7b5130f6d9
16 changed files with 1318 additions and 439 deletions

View File

@@ -35,6 +35,7 @@ namespace lime {
ByteArray ();
ByteArray (struct _value *Value);
ByteArray (const QuickVec<unsigned char> &inValue);
ByteArray (const OSChar *inFilename);
void Resize (int inSize);
int Size() const;
@@ -44,7 +45,6 @@ namespace lime {
struct _value *mValue;
static ByteArray FromFile (const OSChar *inFilename);
static int ToFile (const OSChar *inFilename, const ByteArray array);