Panda3D
|
00001 // Filename: bamReaderParam.I 00002 // Created by: jason (13Jun00) 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 //////////////////////////////////////////////////////////////////// 00018 // Function: BamReaderParam::get_iterator 00019 // Access: Public 00020 // Description: 00021 //////////////////////////////////////////////////////////////////// 00022 INLINE const DatagramIterator &BamReaderParam:: 00023 get_iterator() { 00024 return _iterator; 00025 } 00026 00027 //////////////////////////////////////////////////////////////////// 00028 // Function: BamReaderParam::get_manager 00029 // Access: Public 00030 // Description: 00031 //////////////////////////////////////////////////////////////////// 00032 INLINE BamReader *BamReaderParam:: 00033 get_manager() { 00034 return _manager; 00035 } 00036 00037 00038 //////////////////////////////////////////////////////////////////// 00039 // Function: BamReaderParam::Constructor 00040 // Access: Public 00041 // Description: 00042 //////////////////////////////////////////////////////////////////// 00043 INLINE BamReaderParam:: 00044 BamReaderParam(const DatagramIterator &dgi, BamReader *manager) : 00045 _iterator(dgi), 00046 _manager(manager) 00047 { 00048 } 00049 00050 //////////////////////////////////////////////////////////////////// 00051 // Function: BamReaderParam::Destructor 00052 // Access: Public 00053 // Description: 00054 //////////////////////////////////////////////////////////////////// 00055 INLINE BamReaderParam:: 00056 ~BamReaderParam() { 00057 }