Panda3D
 All Classes Functions Variables Enumerations
vector_writable.h
00001 // Filename: vector_writable.h
00002 // Created by:  jason (14Jun00)
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_WRITABLE_H
00016 #define VECTOR_WRITABLE_H
00017 
00018 #include "pandabase.h"
00019 
00020 #include "pvector.h"
00021 
00022 class Writable;
00023 
00024 ////////////////////////////////////////////////////////////////////
00025 //       Class : vector_writable
00026 // Description : A vector of Writable *.  This class is defined once here,
00027 //               and exported to PANDA.DLL; other packages that want
00028 //               to use a vector of this type (whether they need to
00029 //               export it or not) should include this header file,
00030 //               rather than defining the vector again.
00031 ////////////////////////////////////////////////////////////////////
00032 
00033 #define EXPCL EXPCL_PANDA_PUTIL
00034 #define EXPTP EXPTP_PANDA_PUTIL
00035 #define TYPE Writable *
00036 #define NAME vector_writable
00037 
00038 #include "vector_src.h"
00039 
00040 // Tell GCC that we'll take care of the instantiation explicitly here.
00041 #ifdef __GNUC__
00042 #pragma interface
00043 #endif
00044 
00045 #endif
 All Classes Functions Variables Enumerations