Missing constructor.

This commit is contained in:
JoelKatz
2012-03-20 11:20:37 -07:00
parent 2c113e8f8e
commit fded795841

View File

@@ -31,7 +31,7 @@ protected:
boost::ptr_vector<SerializedType> data;
public:
STUObject() : type(NULL) { ; }
STUObject(const char *n=NULL) : SerializedType(n), type(NULL) { ; }
STUObject(SOType *t) : type(t) { ; }
STUObject(SOType *t, SerializerIterator& u);
virtual ~STUObject() { ; }