Panda3D
|
00001 // Filename: vector_typedWritable.h 00002 // Created by: jason (19Jun00) 00003 // 00004 //////////////////////////////////////////////////////////////////// 00005 // 00006 // PANDA 3D SOFTWARE 00007 // Copyright (c) Carnegie Mellon University. All rights reserved. 00008 // 00009 // All use of this software is subject to the terms of the revised BSD 00010 // license. You should have received a copy of this license along 00011 // with this source code in a file named "LICENSE." 00012 // 00013 //////////////////////////////////////////////////////////////////// 00014 00015 #ifndef VECTOR_TYPED_WRITABLE_H 00016 #define VECTOR_TYPED_WRITABLE_H 00017 00018 #include "pandabase.h" 00019 00020 #include "pvector.h" 00021 00022 class TypedWritable; 00023 00024 //////////////////////////////////////////////////////////////////// 00025 // Class : vector_typedWritable 00026 // Description : A vector of TypedWritable *. This class is defined 00027 // once here, and exported to PANDA.DLL; other packages 00028 // that want to use a vector of this type (whether they 00029 // need to export it or not) should include this header 00030 // file, rather than defining the vector again. 00031 //////////////////////////////////////////////////////////////////// 00032 00033 #define EXPCL EXPCL_PANDA_PUTIL 00034 #define EXPTP EXPTP_PANDA_PUTIL 00035 #define TYPE TypedWritable * 00036 #define NAME vector_typedWritable 00037 00038 #include "vector_src.h" 00039 00040 // Tell GCC that we'll take care of the instantiation explicitly here. 00041 #ifdef __GNUC__ 00042 #pragma interface 00043 #endif 00044 00045 #endif