Class handling the data structure format type "Debug".
The "Debug" format is taken directly from the Print request handler on the Structure and owned object classes. The formatting will be self-describing so either print a structure or look at the Debug method in the adsk::Data::Structure class to see what information is printed.
#include <adskDataStructureSerializerDebug.h>

Public Member Functions | |
| virtual | ~StructureSerializerDebug () |
| Default destructor, does nothing. | |
| virtual Structure * | read (std::istream &cSrc, std::string &errors) const |
| Mandatory pure virtual read method fails immediately. | |
| virtual int | write (const Structure &dataToWrite, std::ostream &cDst) const |
| Output the Structure object in Debug format into the stream. | |
| virtual void | getFormatDescription (std::ostream &info) const |
| Get a description of the Debug structure format. | |
| Structure * read | ( | std::istream & | cSrc, |
| std::string & | errors | ||
| ) | const [virtual] |
Mandatory pure virtual read method fails immediately.
| [in] | cSrc | Stream containing the Debug format data to be parsed |
| [out] | errors | Description of problems found when parsing the string |
Implements StructureSerializer.
| int write | ( | const Structure & | dataToWrite, |
| std::ostream & | cDst | ||
| ) | const [virtual] |
| void getFormatDescription | ( | std::ostream & | info | ) | const [virtual] |
Get a description of the Debug structure format.
Implements StructureSerializer.