open_toontown_panda3d/panda/src/chan/vector_PartGroupStar.h

34 lines
1.0 KiB
C++

// Filename: vector_PartGroupStar.h
// Created by: drose (06Jul00)
//
////////////////////////////////////////////////////////////////////
#ifndef VECTOR_PARTGROUPSTAR_H
#define VECTOR_PARTGROUPSTAR_H
#include <pandabase.h>
#include "partGroup.h"
#include <vector>
////////////////////////////////////////////////////////////////////
// Class : vector_PartGroupStar
// Description : A vector of PartGroup pointers. This class is
// defined once here, and exported to PANDA.DLL; other
// packages that want to use a vector of this type
// (whether they need to export it or not) should
// include this header file, rather than defining the
// vector again.
////////////////////////////////////////////////////////////////////
EXPORT_TEMPLATE_CLASS(EXPCL_PANDA, EXPTP_PANDA, std::vector<PartGroup *>)
typedef vector<PartGroup *> vector_PartGroupStar;
// Tell GCC that we'll take care of the instantiation explicitly here.
#ifdef __GNUC__
#pragma interface
#endif
#endif