Panda3D
 All Classes Functions Variables Enumerations
vector_typedWritable.h
1 // Filename: vector_typedWritable.h
2 // Created by: jason (19Jun00)
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_TYPED_WRITABLE_H
16 #define VECTOR_TYPED_WRITABLE_H
17 
18 #include "pandabase.h"
19 
20 #include "pvector.h"
21 
22 class TypedWritable;
23 
24 ////////////////////////////////////////////////////////////////////
25 // Class : vector_typedWritable
26 // Description : A vector of TypedWritable *. This class is defined
27 // once here, and exported to PANDA.DLL; other packages
28 // that want to use a vector of this type (whether they
29 // need to export it or not) should include this header
30 // file, rather than defining the vector again.
31 ////////////////////////////////////////////////////////////////////
32 
33 #define EXPCL EXPCL_PANDA_PUTIL
34 #define EXPTP EXPTP_PANDA_PUTIL
35 #define TYPE TypedWritable *
36 #define NAME vector_typedWritable
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
Base class for objects that can be written to and read from Bam files.
Definition: typedWritable.h:37