Panda3D
 All Classes Functions Variables Enumerations
vector_int.h
1 // Filename: vector_int.h
2 // Created by: drose (10May00)
3 //
4 ////////////////////////////////////////////////////////////////////
5 //
6 // PANDA 3D SOFTWARE
7 // Copyright (c) Carnegie Mellon University. All rights reserved.
8 //
9 // All use of this software is subject to the terms of the revised BSD
10 // license. You should have received a copy of this license along
11 // with this source code in a file named "LICENSE."
12 //
13 ////////////////////////////////////////////////////////////////////
14 
15 #ifndef VECTOR_INT_H
16 #define VECTOR_INT_H
17 
18 #include "dtoolbase.h"
19 
20 ////////////////////////////////////////////////////////////////////
21 // Class : vector_int
22 // Description : A vector of ints. This class is defined once here,
23 // and exported to DTOOLCONFIG.DLL; other packages that want
24 // to use a vector of this type (whether they need to
25 // export it or not) should include this header file,
26 // rather than defining the vector again.
27 ////////////////////////////////////////////////////////////////////
28 
29 #define EXPCL EXPCL_DTOOLCONFIG
30 #define EXPTP EXPTP_DTOOLCONFIG
31 #define TYPE int
32 #define NAME vector_int
33 
34 #include "vector_src.h"
35 
36 // Tell GCC that we'll take care of the instantiation explicitly here.
37 #ifdef __GNUC__
38 #pragma interface
39 #endif
40 
41 #endif