35 lines
997 B
C
35 lines
997 B
C
|
/**
|
||
|
* PANDA 3D SOFTWARE
|
||
|
* Copyright (c) Carnegie Mellon University. All rights reserved.
|
||
|
*
|
||
|
* All use of this software is subject to the terms of the revised BSD
|
||
|
* license. You should have received a copy of this license along
|
||
|
* with this source code in a file named "LICENSE."
|
||
|
*
|
||
|
* @file pt_EggMaterial.h
|
||
|
* @author drose
|
||
|
* @date 2001-05-01
|
||
|
*/
|
||
|
|
||
|
#ifndef PT_EGGMATERIAL_H
|
||
|
#define PT_EGGMATERIAL_H
|
||
|
|
||
|
#include "pandabase.h"
|
||
|
|
||
|
#include "eggMaterial.h"
|
||
|
#include "pointerTo.h"
|
||
|
|
||
|
/**
|
||
|
* A PT(EggMaterial). This is defined here solely we can explicitly export
|
||
|
* the template class. It's not strictly necessary, but it doesn't hurt.
|
||
|
*/
|
||
|
|
||
|
EXPORT_TEMPLATE_CLASS(EXPCL_PANDA_EGG, EXPTP_PANDA_EGG, PointerToBase<EggMaterial>)
|
||
|
EXPORT_TEMPLATE_CLASS(EXPCL_PANDA_EGG, EXPTP_PANDA_EGG, PointerTo<EggMaterial>)
|
||
|
EXPORT_TEMPLATE_CLASS(EXPCL_PANDA_EGG, EXPTP_PANDA_EGG, ConstPointerTo<EggMaterial>)
|
||
|
|
||
|
typedef PointerTo<EggMaterial> PT_EggMaterial;
|
||
|
typedef ConstPointerTo<EggMaterial> CPT_EggMaterial;
|
||
|
|
||
|
#endif
|