69 lines
2.1 KiB
C++
69 lines
2.1 KiB
C++
// Filename: xFileDataObjectString.h
|
|
// Created by: drose (08Oct04)
|
|
//
|
|
////////////////////////////////////////////////////////////////////
|
|
//
|
|
// PANDA 3D SOFTWARE
|
|
// Copyright (c) 2001 - 2004, Disney Enterprises, Inc. All rights reserved
|
|
//
|
|
// All use of this software is subject to the terms of the Panda 3d
|
|
// Software license. You should have received a copy of this license
|
|
// along with this source code; you will also find a current copy of
|
|
// the license at http://etc.cmu.edu/panda3d/docs/license/ .
|
|
//
|
|
// To contact the maintainers of this program write to
|
|
// panda3d-general@lists.sourceforge.net .
|
|
//
|
|
////////////////////////////////////////////////////////////////////
|
|
|
|
#ifndef XFILEDATAOBJECTSTRING_H
|
|
#define XFILEDATAOBJECTSTRING_H
|
|
|
|
#include "pandatoolbase.h"
|
|
#include "xFileDataObject.h"
|
|
|
|
////////////////////////////////////////////////////////////////////
|
|
// Class : XFileDataObjectString
|
|
// Description : An string-valued data element. This matches one
|
|
// string data member of a template, or a single
|
|
// element of an string array.
|
|
////////////////////////////////////////////////////////////////////
|
|
class XFileDataObjectString : public XFileDataObject {
|
|
public:
|
|
XFileDataObjectString(const XFileDataDef *data_def, const string &value);
|
|
|
|
virtual void output_data(ostream &out) const;
|
|
virtual void write_data(ostream &out, int indent_level,
|
|
const char *separator) const;
|
|
|
|
protected:
|
|
virtual void set_string_value(const string &string_value);
|
|
virtual string get_string_value() const;
|
|
|
|
private:
|
|
void enquote_string(ostream &out) const;
|
|
|
|
string _value;
|
|
|
|
public:
|
|
static TypeHandle get_class_type() {
|
|
return _type_handle;
|
|
}
|
|
static void init_type() {
|
|
XFileDataObject::init_type();
|
|
register_type(_type_handle, "XFileDataObjectString",
|
|
XFileDataObject::get_class_type());
|
|
}
|
|
virtual TypeHandle get_type() const {
|
|
return get_class_type();
|
|
}
|
|
virtual TypeHandle force_init_type() {init_type(); return get_class_type();}
|
|
|
|
private:
|
|
static TypeHandle _type_handle;
|
|
};
|
|
|
|
#include "xFileDataObjectString.I"
|
|
|
|
#endif
|