Panda3D
|
00001 // Filename: pta_LVecBase3f.h 00002 // Created by: drose (27Feb10) 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 PTA_LVECBASE3F_H 00016 #define PTA_LVECBASE3F_H 00017 00018 #include "pandabase.h" 00019 #include "luse.h" 00020 #include "pointerToArray.h" 00021 00022 //////////////////////////////////////////////////////////////////// 00023 // Class : PTA_LVecBase3f 00024 // Description : A pta of LVecBase3fs. This class is defined once here, 00025 // and exported to PANDA.DLL; other packages that want 00026 // to use a pta of this type (whether they need to 00027 // export it or not) should include this header file, 00028 // rather than defining the pta again. 00029 //////////////////////////////////////////////////////////////////// 00030 00031 EXPORT_TEMPLATE_CLASS(EXPCL_PANDA_MATHUTIL, EXPTP_PANDA_MATHUTIL, PointerToBase<ReferenceCountedVector<LVecBase3f> >) 00032 EXPORT_TEMPLATE_CLASS(EXPCL_PANDA_MATHUTIL, EXPTP_PANDA_MATHUTIL, PointerToArrayBase<LVecBase3f>) 00033 EXPORT_TEMPLATE_CLASS(EXPCL_PANDA_MATHUTIL, EXPTP_PANDA_MATHUTIL, PointerToArray<LVecBase3f>) 00034 EXPORT_TEMPLATE_CLASS(EXPCL_PANDA_MATHUTIL, EXPTP_PANDA_MATHUTIL, ConstPointerToArray<LVecBase3f>) 00035 00036 typedef PointerToArray<LVecBase3f> PTA_LVecBase3f; 00037 typedef ConstPointerToArray<LVecBase3f> CPTA_LVecBase3f; 00038 00039 // Tell GCC that we'll take care of the instantiation explicitly here. 00040 #ifdef __GNUC__ 00041 #pragma interface 00042 #endif 00043 00044 #endif