Panda3D
|
00001 // Filename: vector_ulong.h 00002 // Created by: drose (10May00) 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_ULONG_H 00016 #define VECTOR_ULONG_H 00017 00018 #include "pandabase.h" 00019 00020 #include "pvector.h" 00021 00022 //////////////////////////////////////////////////////////////////// 00023 // Class : vector_ushort 00024 // Description : A vector of ushorts. This class is defined once here, 00025 // and exported to PANDA.DLL; other packages that want 00026 // to use a vector of this type (whether they need to 00027 // export it or not) should include this header file, 00028 // rather than defining the vector again. 00029 //////////////////////////////////////////////////////////////////// 00030 00031 #define EXPCL EXPCL_PANDA_PUTIL 00032 #define EXPTP EXPTP_PANDA_PUTIL 00033 #define TYPE unsigned long 00034 #define NAME vector_ulong 00035 00036 #include "vector_src.h" 00037 00038 // Tell GCC that we'll take care of the instantiation explicitly here. 00039 #ifdef __GNUC__ 00040 #pragma interface 00041 #endif 00042 00043 #endif