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 >
Wrap
C/C++ Source or Header
|
1994-08-06
|
2KB
|
60 lines
#ifndef mgrnodelist_h
#define mgrnodelist_h
/*
* NIST STEP Editor Class Library
* cleditor/mgrnodelist.h
* February, 1994
* David Sauder
* K. C. Morris
* Development of this software was funded by the United States Government,
* and is not subject to copyright.
*/
/* $Id: mgrnodelist.h,v 2.0.1.1 1994/04/05 16:42:02 sauderd Exp $ */
#include <gennode.h>
#include <gennodeinline.h>
#include <gennodelist.h>
#include <editordefines.h>
//////////////////////////////////////////////////////////////////////////////
// class MgrNodeList
// This will be used to represent the state lists.
//////////////////////////////////////////////////////////////////////////////
class MgrNode;
class MgrNodeList : public GenNodeList
{
public:
MgrNodeList(stateEnum type);
virtual ~MgrNodeList() { }
// ADDED functions
virtual MgrNode *FindFileId(int fileId);
// REDEFINED functions
// deletes node from its previous list & appends
virtual void Append(GenericNode *node);
// deletes newNode from its previous list & inserts in
// relation to existNode
virtual void InsertAfter(GenericNode *newNode, GenericNode *existNode);
virtual void InsertBefore(GenericNode *newNode, GenericNode *existNode);
virtual void Remove(GenericNode *node);
protected:
stateEnum listType;
};
//////////////////////////////////////////////////////////////////////////////
// class MgrNodeList inline functions
// these functions don't rely on any inline functions (its own or
// other classes) that aren't in this file except for Generic functions
//////////////////////////////////////////////////////////////////////////////
#endif