Panda3D
 All Classes Functions Variables Enumerations
physxVehicleDesc.h
1 // Filename: physxVehicleDesc.h
2 // Created by: enn0x (23Mar10)
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 PHYSXVEHICLEDESC_H
16 #define PHYSXVEHICLEDESC_H
17 
18 #include "pandabase.h"
19 
20 #include "physx_includes.h"
21 
22 ////////////////////////////////////////////////////////////////////
23 // Class : PhysxVehicleDesc
24 // Description :
25 ////////////////////////////////////////////////////////////////////
26 class EXPCL_PANDAPHYSX PhysxVehicleDesc : public ReferenceCount {
27 
28 PUBLISHED:
29  INLINE PhysxVehicleDesc();
30  INLINE ~PhysxVehicleDesc();
31 
32  INLINE void set_to_default();
33  INLINE bool is_valid() const;
34 
35 public:
36 };
37 
38 #include "physxVehicleDesc.I"
39 
40 #endif // PHYSXVEHICLEDESC_H
A base class for all things that want to be reference-counted.