91SoEXTENDER_Documented 
class  SoAccumulatedElement : 
public SoElement {
 
   93  SO_ELEMENT_ABSTRACT_HEADER(SoAccumulatedElement);
 
  113  virtual SbBool matches(
const SoElement* elt) 
const;
 
  119  virtual SoElement* copyMatchInfo() 
const;
 
  123  static void         initClass();
 
  124  static void         exitClass();
 
  131  void addNodeId(
const SoNode *node);
 
  134  void replaceNodeId(
const SoNode *nodeToReplace,
const SoNode* newNode);
 
  137  void setNodeId(
const SoNode *node);
 
  141  virtual void captureThis(
SoState *state) 
const;
 
  144  virtual ~SoAccumulatedElement();
 
  148  typedef std::vector<uint64_t> SoNodeIdList;
 
  151  void setNodeIdList( 
const SoNodeIdList& nodeIdList );
 
  154  inline const SoNodeIdList& getNodeIdList()
 const 
  155  { 
return m_nodeIdList; }
 
  161  mutable SoNodeIdList m_nodeIdList;
 
  162  bool accumulatesWithParentFlag;