Panda3D
 All Classes Functions Variables Enumerations
linmath_events.h
1 // Filename: linmath_events.h
2 // Created by: drose (12Mar02)
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 LINMATH_EVENTS_H
16 #define LINMATH_EVENTS_H
17 
18 #include "pandabase.h"
19 
20 #include "paramValue.h"
21 #include "luse.h"
22 
23 ////////////////////////////////////////////////////////////////////
24 //
25 // This file defines a few more EventStore classes for storing linmath
26 // objects in an EventParameter. These are just for backward
27 // compatibility; they are defined as typedefs to ParamVecBase types.
28 //
29 // See paramValue.h.
30 //
31 ////////////////////////////////////////////////////////////////////
32 
36 
37 // Tell GCC that we'll take care of the instantiation explicitly here.
38 #ifdef __GNUC__
39 #pragma interface
40 #endif
41 
42 #endif
A handy class object for storing simple values (like integers or strings) passed along with an Event ...
Definition: paramValue.h:109