Main Page | Modules | Class Hierarchy | Alphabetical List | Class List | File List | Class Members

SoChildList.h

00001 /**************************************************************************\ 00002 * 00003 * This file is part of the Coin 3D visualization library. 00004 * Copyright (C) 1998-2003 by Systems in Motion. All rights reserved. 00005 * 00006 * This library is free software; you can redistribute it and/or 00007 * modify it under the terms of the GNU Lesser General Public License 00008 * version 2.1 as published by the Free Software Foundation. See the 00009 * file LICENSE.LGPL at the root directory of the distribution for 00010 * more details. 00011 * 00012 * If you want to use Coin for applications not compatible with the 00013 * LGPL, please contact SIM to acquire a Professional Edition license. 00014 * 00015 * Systems in Motion, Teknobyen, Abels Gate 5, 7030 Trondheim, NORWAY 00016 * http://www.sim.no support@sim.no Voice: +47 22114160 Fax: +47 22207097 00017 * 00018 \**************************************************************************/ 00019 00020 #ifndef COIN_SOCHILDLIST_H 00021 #define COIN_SOCHILDLIST_H 00022 00023 #include <Inventor/lists/SoNodeList.h> 00024 00025 class SoPath; 00026 class SoAction; 00027 00028 00029 class COIN_DLL_API SoChildList : public SoNodeList { 00030 typedef SoNodeList inherited; 00031 00032 public: 00033 SoChildList(SoNode * const parent); 00034 SoChildList(SoNode * const parent, const int size); 00035 SoChildList(SoNode * const parent, const SoChildList & cl); 00036 ~SoChildList(); 00037 00038 void append(SoNode * const node); 00039 void insert(SoNode * const ptr, const int addbefore); 00040 void remove(const int index); 00041 void truncate(const int length); 00042 void copy(const SoChildList & cl); 00043 void set(const int index, SoNode * const node); 00044 00045 void traverseInPath(SoAction * const action, const int numindices, 00046 const int * indices); 00047 void traverse(SoAction * const action); 00048 void traverse(SoAction * const action, const int index); 00049 void traverse(SoAction * const action, SoNode * node); 00050 void traverse(SoAction * const action, const int first, const int last); 00051 00052 public: 00053 void addPathAuditor(SoPath * const path); 00054 void removePathAuditor(SoPath * const path); 00055 00056 private: 00057 SoNode * parent; 00058 SbList<SoPath *> auditors; 00059 }; 00060 00061 #endif // !COIN_SOCHILDLIST_H

Generated on Tue Jul 27 23:53:00 2004 for Coin by doxygen 1.3.7