home *** CD-ROM | disk | FTP | other *** search
/ ftptest.leeds.ac.uk / 2015.02.ftptest.leeds.ac.uk.tar / ftptest.leeds.ac.uk / bionet / CAE-GROUP / SCL-WIN3x / SCL.EXE / SEEINFOD.H < prev    next >
C/C++ Source or Header  |  1994-08-06  |  943b  |  47 lines

  1. #ifndef seeinfodefault_h
  2. #define seeinfodefault_h
  3.  
  4. /*
  5. * NIST STEP Editor Class Library
  6. * cleditor/schemaheader.cc
  7. * February, 1994
  8. * David Sauder
  9. * K. C. Morris
  10.  
  11. * Development of this software was funded by the United States Government,
  12. * and is not subject to copyright.
  13. */
  14.  
  15. // this is a default seeinfo that does nothing... thus it is not
  16. //    dependent on a user interface toolkit
  17.  
  18.  
  19.  
  20. class MgrNode;
  21. class DisplayNode;
  22. class DisplayNodelist;
  23. class STEPentity;
  24.  
  25. #include <editordefines.h>
  26.  
  27. class seeInfo : public DisplayNode
  28. {
  29. public:
  30.     seeInfo(MgrNode *node, 
  31.         STEPentity *se,
  32.         DisplayNodeList *dnl, displayStateEnum displaySt = mappedWrite);
  33.  
  34.     void *GetSEE()        { return see; }
  35. };
  36.  
  37. inline seeInfo::seeInfo(MgrNode *node, STEPentity *se,
  38.          DisplayNodeList *dnl, displayStateEnum displaySt)
  39. {
  40.     mn = node; 
  41.     see = 0;
  42.     displayState = displaySt; 
  43.     dnl->Append(this);
  44. }
  45.  
  46. #endif
  47.