Panda3D
 All Classes Functions Variables Enumerations
vector_PartGroupStar.h
1 // Filename: vector_PartGroupStar.h
2 // Created by: drose (06Jul00)
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_PARTGROUPSTAR_H
16 #define VECTOR_PARTGROUPSTAR_H
17 
18 #include "pandabase.h"
19 #include "partGroup.h"
20 #include "pvector.h"
21 
22 ////////////////////////////////////////////////////////////////////
23 // Class : vector_PartGroupStar
24 // Description : A vector of PartGroup pointers. This class is
25 // defined once here, and exported to PANDA.DLL; other
26 // packages that want to use a vector of this type
27 // (whether they need to export it or not) should
28 // include this header file, rather than defining the
29 // vector again.
30 ////////////////////////////////////////////////////////////////////
31 
32 #define EXPCL EXPCL_PANDA_CHAN
33 #define EXPTP EXPTP_PANDA_CHAN
34 #define TYPE PartGroup *
35 #define NAME vector_PartGroupStar
36 
37 #include "vector_src.h"
38 
39 // Tell GCC that we'll take care of the instantiation explicitly here.
40 #ifdef __GNUC__
41 #pragma interface
42 #endif
43 
44 #endif