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