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