vector_PT_Node.h 1.5 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950
  1. // Filename: vector_PT_Node.h
  2. // Created by: drose (16May00)
  3. //
  4. ////////////////////////////////////////////////////////////////////
  5. //
  6. // PANDA 3D SOFTWARE
  7. // Copyright (c) 2001, Disney Enterprises, Inc. All rights reserved
  8. //
  9. // All use of this software is subject to the terms of the Panda 3d
  10. // Software license. You should have received a copy of this license
  11. // along with this source code; you will also find a current copy of
  12. // the license at http://www.panda3d.org/license.txt .
  13. //
  14. // To contact the maintainers of this program write to
  15. // [email protected] .
  16. //
  17. ////////////////////////////////////////////////////////////////////
  18. #ifndef VECTOR_PT_NODE_H
  19. #define VECTOR_PT_NODE_H
  20. #include <pandabase.h>
  21. #include "node.h"
  22. #include "pt_Node.h"
  23. #include "pvector.h"
  24. ////////////////////////////////////////////////////////////////////
  25. // Class : vector_PT_Node
  26. // Description : A vector of PT(Node)'s. This class is defined once
  27. // here, and exported to PANDA.DLL; other packages that
  28. // want to use a vector of this type (whether they need
  29. // to export it or not) should include this header file,
  30. // rather than defining the vector again.
  31. ////////////////////////////////////////////////////////////////////
  32. #define EXPCL EXPCL_PANDA
  33. #define EXPTP EXPTP_PANDA
  34. #define TYPE PT_Node
  35. #define NAME vector_PT_Node
  36. #include <vector_src.h>
  37. // Tell GCC that we'll take care of the instantiation explicitly here.
  38. #ifdef __GNUC__
  39. #pragma interface
  40. #endif
  41. #endif