blob: 4ce21ca5d20e5fe4497952e339b1bd62e746e419 [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 PNetString;
class StringBuilder : public VMObject {
public:
PNetString* buildString;
sint32 maxCapactiy;
sint32 needsCopy;
};
}
#endif