Panda3D
 All Classes Functions Variables Enumerations
recorderTable.I
00001 // Filename: recorderTable.I
00002 // Created by:  drose (27Jan04)
00003 //
00004 ////////////////////////////////////////////////////////////////////
00005 //
00006 // PANDA 3D SOFTWARE
00007 // Copyright (c) Carnegie Mellon University.  All rights reserved.
00008 //
00009 // All use of this software is subject to the terms of the revised BSD
00010 // license.  You should have received a copy of this license along
00011 // with this source code in a file named "LICENSE."
00012 //
00013 ////////////////////////////////////////////////////////////////////
00014 
00015 
00016 ////////////////////////////////////////////////////////////////////
00017 //     Function: RecorderTable::Constructor
00018 //       Access: Published
00019 //  Description:
00020 ////////////////////////////////////////////////////////////////////
00021 INLINE RecorderTable::
00022 RecorderTable() {
00023   _error = false;
00024 }
00025 
00026 ////////////////////////////////////////////////////////////////////
00027 //     Function: RecorderTable::Copy Constructor
00028 //       Access: Published
00029 //  Description:
00030 ////////////////////////////////////////////////////////////////////
00031 INLINE RecorderTable::
00032 RecorderTable(const RecorderTable &copy) :
00033   _recorders(copy._recorders),
00034   _error(copy._error)
00035 {
00036 }
00037 
00038 ////////////////////////////////////////////////////////////////////
00039 //     Function: RecorderTable::Copy Assignment Operator
00040 //       Access: Published
00041 //  Description:
00042 ////////////////////////////////////////////////////////////////////
00043 INLINE void RecorderTable::
00044 operator = (const RecorderTable &copy) {
00045   _recorders = copy._recorders;
00046   _error = copy._error;
00047 }
00048 
00049 ////////////////////////////////////////////////////////////////////
00050 //     Function: RecorderTable::Destructor
00051 //       Access: Published
00052 //  Description:
00053 ////////////////////////////////////////////////////////////////////
00054 INLINE RecorderTable::
00055 ~RecorderTable() {
00056 }
 All Classes Functions Variables Enumerations