Panda3D
 All Classes Functions Variables Enumerations
vector_int.h
00001 // Filename: vector_int.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_INT_H
00016 #define VECTOR_INT_H
00017 
00018 #include "dtoolbase.h"
00019 
00020 ////////////////////////////////////////////////////////////////////
00021 //       Class : vector_int
00022 // Description : A vector of ints.  This class is defined once here,
00023 //               and exported to DTOOLCONFIG.DLL; other packages that want
00024 //               to use a vector of this type (whether they need to
00025 //               export it or not) should include this header file,
00026 //               rather than defining the vector again.
00027 ////////////////////////////////////////////////////////////////////
00028 
00029 #define EXPCL EXPCL_DTOOLCONFIG
00030 #define EXPTP EXPTP_DTOOLCONFIG
00031 #define TYPE int
00032 #define NAME vector_int
00033 
00034 #include "vector_src.h"
00035 
00036 // Tell GCC that we'll take care of the instantiation explicitly here.
00037 #ifdef __GNUC__
00038 #pragma interface
00039 #endif
00040 
00041 #endif
 All Classes Functions Variables Enumerations