blob: 4ce31fa3b4491d7bc0620b248146dea528e783ba [file] [log] [blame]
//===----------------- PNetLib.h - PNetLib interface ----------------------===//
//
// N3
//
// This file is distributed under the University of Illinois Open Source
// License. See LICENSE.TXT for details.
//
//===----------------------------------------------------------------------===//
#ifndef N3_PNETLIB_H
#define N3_PNETLIB_H
#include "VMObject.h"
namespace n3 {
class CLIString;
class StringBuilder : public VMObject {
public:
CLIString* buildString;
sint32 maxCapactiy;
sint32 needsCopy;
};
}
#endif