33 lines
753 B
C++
33 lines
753 B
C++
/**
|
|
* PANDA 3D SOFTWARE
|
|
* Copyright (c) Carnegie Mellon University. All rights reserved.
|
|
*
|
|
* All use of this software is subject to the terms of the revised BSD
|
|
* license. You should have received a copy of this license along
|
|
* with this source code in a file named "LICENSE."
|
|
*
|
|
* @file basicSkel.cxx
|
|
* @author jyelon
|
|
* @date 2007-01-31
|
|
*/
|
|
|
|
#include "basicSkel.h"
|
|
|
|
/**
|
|
* Stores an integer value. Exact same functionality as set_value, except
|
|
* that this isn't an inline function.
|
|
*/
|
|
void BasicSkel::
|
|
set_value_alt(int n) {
|
|
_value = n;
|
|
}
|
|
|
|
/**
|
|
* Retreives a value that was previously stored. Exact same functionality as
|
|
* get_value, except that this isn't an inline function.
|
|
*/
|
|
int BasicSkel::
|
|
get_value_alt() {
|
|
return _value;
|
|
}
|