Panda3D
recorderFrame.I
1 // Filename: recorderFrame.I
2 // Created by: drose (28Jan04)
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 
16 ////////////////////////////////////////////////////////////////////
17 // Function: RecorderFrame::Constructor
18 // Access: Published
19 // Description:
20 ////////////////////////////////////////////////////////////////////
21 INLINE RecorderFrame::
22 RecorderFrame() {
23 }
24 
25 ////////////////////////////////////////////////////////////////////
26 // Function: RecorderFrame::Constructor
27 // Access: Published
28 // Description:
29 ////////////////////////////////////////////////////////////////////
30 INLINE RecorderFrame::
31 RecorderFrame(double timestamp, int frame,
32  bool table_changed, RecorderTable *table) :
33  _timestamp(timestamp),
34  _frame(frame),
35  _table_changed(table_changed),
36  _table(table)
37 {
38 }
39 
40 ////////////////////////////////////////////////////////////////////
41 // Function: RecorderFrame::Destructor
42 // Access: Published
43 // Description:
44 ////////////////////////////////////////////////////////////////////
45 INLINE RecorderFrame::
46 ~RecorderFrame() {
47 }
This object is used by the RecorderController to write (and read) a record of the set of recorders in...
Definition: recorderTable.h:35