Files
geant4/source/geometry/solids/STEP/include/mgrnodelist.h
T
2016-06-08 15:42:07 +02:00

63 lines
1.6 KiB
C++

#ifndef mgrnodelist_h
#define mgrnodelist_h
/*
* NIST STEP Editor Class Library
* cleditor/mgrnodelist.h
* April 1997
* 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 1.3 2000/01/21 13:42:40 gcosmo Exp $ */
#ifdef __O3DB__
#include <OpenOODB.h>
#endif
#include <gennode.h>
//#include <gennode.inline.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