VisSDStream.cpp
上传用户:weixiumei
上传日期:2008-05-15
资源大小:1769k
文件大小:21k
开发平台:

Visual C++

  1. ///////////////////////////////////////////////////////////////////////////
  2. //
  3. // NAME
  4. //  VisSDStream.cpp -- self-describing stream format for data input/output
  5. //
  6. // DESCRIPTION
  7. //  The CVisSDStream class is used to read and write ASCII descriptions of
  8. //  MSVisSDK objects.  The format for each class is printed at the top of
  9. //  the file.  This allows data files to remain somewhat forward and
  10. //  backward compatible, as fields are added/removed to/from classes.
  11. //
  12. //  The class declarations follow usual C++ syntax, with some restrictions:
  13. //  . exactly one field per line
  14. //  ...
  15. //
  16. //  Comments and whitespace can be interspersed with the declarations and data.
  17. //  The data itself uses the curly bracket and comma separated syntax
  18. //  of C/C++ data initialization.  Variable length lists and sets
  19. //  are supported.
  20. //
  21. //  Each class which wants to be printable is responsible for providing
  22. //  its own reading/writing routine.  Each class which wants to be described
  23. //  must provide a printable lists of fields currently supported.  These
  24. //  fields are accesses through the 
  25. //
  26. // SEE ALSO
  27. //  VisSDStream.h           longer description
  28. //
  29. //  Rick's research notes from Sept 13, 1997.
  30. //
  31. // Copyright