Panda3D
bamReaderParam.I
1 // Filename: bamReaderParam.I
2 // Created by: jason (13Jun00)
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 ////////////////////////////////////////////////////////////////////
18 // Function: BamReaderParam::get_iterator
19 // Access: Public
20 // Description:
21 ////////////////////////////////////////////////////////////////////
22 INLINE const DatagramIterator &BamReaderParam::
23 get_iterator() {
24  return _iterator;
25 }
26 
27 ////////////////////////////////////////////////////////////////////
28 // Function: BamReaderParam::get_manager
29 // Access: Public
30 // Description:
31 ////////////////////////////////////////////////////////////////////
32 INLINE BamReader *BamReaderParam::
33 get_manager() {
34  return _manager;
35 }
36 
37 
38 ////////////////////////////////////////////////////////////////////
39 // Function: BamReaderParam::Constructor
40 // Access: Public
41 // Description:
42 ////////////////////////////////////////////////////////////////////
43 INLINE BamReaderParam::
44 BamReaderParam(const DatagramIterator &dgi, BamReader *manager) :
45  _iterator(dgi),
46  _manager(manager)
47 {
48 }
49 
50 ////////////////////////////////////////////////////////////////////
51 // Function: BamReaderParam::Destructor
52 // Access: Public
53 // Description:
54 ////////////////////////////////////////////////////////////////////
55 INLINE BamReaderParam::
56 ~BamReaderParam() {
57 }
This is the fundamental interface for extracting binary objects from a Bam file, as generated by a Ba...
Definition: bamReader.h:122
A class to retrieve the individual data elements previously stored in a Datagram. ...