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 / MGRNODEL.H < prev    next >
C/C++ Source or Header  |  1994-08-06  |  2KB  |  60 lines

  1.  
  2. #ifndef mgrnodelist_h
  3. #define mgrnodelist_h
  4.  
  5. /*
  6. * NIST STEP Editor Class Library
  7. * cleditor/mgrnodelist.h
  8. * February, 1994
  9. * David Sauder
  10. * K. C. Morris
  11.  
  12. * Development of this software was funded by the United States Government,
  13. * and is not subject to copyright.
  14. */
  15.  
  16. /* $Id: mgrnodelist.h,v 2.0.1.1 1994/04/05 16:42:02 sauderd Exp $ */ 
  17.  
  18.  
  19. #include <gennode.h>
  20. #include <gennodeinline.h>
  21. #include <gennodelist.h>
  22. #include <editordefines.h>
  23.  
  24. //////////////////////////////////////////////////////////////////////////////
  25. // class MgrNodeList
  26. //    This will be used to represent the state lists.
  27. //////////////////////////////////////////////////////////////////////////////
  28.  
  29. class MgrNode;
  30.  
  31. class MgrNodeList : public GenNodeList
  32. {
  33. public:
  34.     MgrNodeList(stateEnum type);
  35.     virtual ~MgrNodeList() { }
  36.  
  37. // ADDED functions
  38.     virtual MgrNode *FindFileId(int fileId);
  39.  
  40. // REDEFINED functions
  41.         // deletes node from its previous list & appends
  42.     virtual void Append(GenericNode *node);
  43.         // deletes newNode from its previous list & inserts in
  44.         //    relation to existNode
  45.     virtual void InsertAfter(GenericNode *newNode, GenericNode *existNode);
  46.     virtual void InsertBefore(GenericNode *newNode, GenericNode *existNode);
  47.     virtual void Remove(GenericNode *node);
  48.  
  49. protected:
  50.     stateEnum listType;
  51. };
  52.  
  53. //////////////////////////////////////////////////////////////////////////////
  54. // class MgrNodeList inline functions
  55. // these functions don't rely on any inline functions (its own or
  56. //    other classes) that aren't in this file except for Generic functions
  57. //////////////////////////////////////////////////////////////////////////////
  58.  
  59. #endif
  60.