53 lines
1.6 KiB
Plaintext
53 lines
1.6 KiB
Plaintext
// Filename: basicSkel.I
|
|
// Created by: jyelon (31Jan07)
|
|
//
|
|
////////////////////////////////////////////////////////////////////
|
|
//
|
|
// 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."
|
|
//
|
|
////////////////////////////////////////////////////////////////////
|
|
|
|
|
|
////////////////////////////////////////////////////////////////////
|
|
// Function: BasicSkel::Constructor
|
|
// Access: Public
|
|
// Description:
|
|
////////////////////////////////////////////////////////////////////
|
|
INLINE BasicSkel::
|
|
BasicSkel() {
|
|
}
|
|
|
|
////////////////////////////////////////////////////////////////////
|
|
// Function: BasicSkel::Destructor
|
|
// Access: Public
|
|
// Description:
|
|
////////////////////////////////////////////////////////////////////
|
|
INLINE BasicSkel::
|
|
~BasicSkel() {
|
|
}
|
|
|
|
////////////////////////////////////////////////////////////////////
|
|
// Function: BasicSkel::set_value
|
|
// Access: Public
|
|
// Description: Stores an integer value.
|
|
////////////////////////////////////////////////////////////////////
|
|
INLINE void BasicSkel::
|
|
set_value(int n) {
|
|
_value = n;
|
|
}
|
|
|
|
////////////////////////////////////////////////////////////////////
|
|
// Function: BasicSkel::get_value
|
|
// Access: Public
|
|
// Description: Retreives a value that was previously stored.
|
|
////////////////////////////////////////////////////////////////////
|
|
INLINE int BasicSkel::
|
|
get_value() {
|
|
return _value;
|
|
}
|