Panda3D
basicSkel.cxx
1 // Filename: basicSkel.cxx
2 // Created by: jyelon (31Jan07)
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 #include "basicSkel.h"
16 
17 ////////////////////////////////////////////////////////////////////
18 // Function: BasicSkel::set_value_alt
19 // Access: Public
20 // Description: Stores an integer value. Exact same functionality
21 // as set_value, except that this isn't an inline
22 // function.
23 ////////////////////////////////////////////////////////////////////
24 void BasicSkel::
25 set_value_alt(int n) {
26  _value = n;
27 }
28 
29 ////////////////////////////////////////////////////////////////////
30 // Function: BasicSkel::get_value
31 // Access: Public
32 // Description: Retreives a value that was previously stored.
33 // Exact same functionality as get_value, except
34 // that this isn't an inline function.
35 ////////////////////////////////////////////////////////////////////
36 int BasicSkel::
38  return _value;
39 }
int get_value_alt()
Retreives a value that was previously stored.
Definition: basicSkel.cxx:37
void set_value_alt(int n)
Stores an integer value.
Definition: basicSkel.cxx:25