Panda3D
eggSaver.I
1 // Filename: eggSaver.I
2 // Created by: drose (19Dec12)
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: EggSaver::get_egg_data
18 // Access: Published
19 // Description: Returns the EggData populated within this class.
20 ////////////////////////////////////////////////////////////////////
21 INLINE EggData *EggSaver::
22 get_egg_data() const {
23  return _data;
24 }
25 
This is the primary interface into all the egg data, and the root of the egg file structure...
Definition: eggData.h:41
EggData * get_egg_data() const
Returns the EggData populated within this class.
Definition: eggSaver.I:22