33 #include "BESContainer.h" 40 BESObj(copy_from), _symbolic_name(copy_from._symbolic_name), _real_name(copy_from._real_name),
41 _container_type(copy_from._container_type), _constraint(copy_from._constraint),
42 _dap4_constraint(copy_from._dap4_constraint), _dap4_function(copy_from._dap4_function), _attributes(copy_from._attributes)
52 copy_to._real_name = _real_name;
53 copy_to._constraint = _constraint;
54 copy_to._dap4_constraint = _dap4_constraint;
55 copy_to._dap4_function = _dap4_function;
56 copy_to._symbolic_name = _symbolic_name;
57 copy_to._container_type = _container_type;
58 copy_to._attributes = _attributes;
70 strm << BESIndent::LMarg <<
"BESContainer::dump - (" << (
void *)
this <<
")" << endl;
72 strm << BESIndent::LMarg <<
"symbolic name: " << _symbolic_name << endl;
73 strm << BESIndent::LMarg <<
"real name: " << _real_name << endl;
74 strm << BESIndent::LMarg <<
"data type: " << _container_type << endl;
75 strm << BESIndent::LMarg <<
"constraint: " << _constraint << endl;
76 strm << BESIndent::LMarg <<
"dap4_constraint: " << _dap4_constraint << endl;
77 strm << BESIndent::LMarg <<
"dap4_function: " << _dap4_function << endl;
78 strm << BESIndent::LMarg <<
"attributes: " << _attributes << endl;
79 BESIndent::UnIndent();
Base object for bes objects.
void _duplicate(BESContainer ©_to)
duplicate this instance into the passed container
virtual void dump(ostream &strm) const
dumps information about this object
A container is something that holds data. I.E. a netcdf file or a database entry. ...