| 1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556 |
- // Filename: p3dUndefinedObject.cxx
- // Created by: drose (07Jul09)
- //
- ////////////////////////////////////////////////////////////////////
- //
- // 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."
- //
- ////////////////////////////////////////////////////////////////////
- #include "p3dUndefinedObject.h"
- ////////////////////////////////////////////////////////////////////
- // Function: P3DUndefinedObject::Constructor
- // Access: Public
- // Description:
- ////////////////////////////////////////////////////////////////////
- P3DUndefinedObject::
- P3DUndefinedObject() {
- }
- ////////////////////////////////////////////////////////////////////
- // Function: P3DUndefinedObject::get_type
- // Access: Public, Virtual
- // Description: Returns the fundamental type of this kind of object.
- ////////////////////////////////////////////////////////////////////
- P3D_object_type P3DUndefinedObject::
- get_type() {
- return P3D_OT_undefined;
- }
- ////////////////////////////////////////////////////////////////////
- // Function: P3DUndefinedObject::get_bool
- // Access: Public, Virtual
- // Description: Returns the object value coerced to a boolean, if
- // possible.
- ////////////////////////////////////////////////////////////////////
- bool P3DUndefinedObject::
- get_bool() {
- return false;
- }
- ////////////////////////////////////////////////////////////////////
- // Function: P3DUndefinedObject::make_string
- // Access: Public, Virtual
- // Description: Fills the indicated C++ string object with the value
- // of this object coerced to a string.
- ////////////////////////////////////////////////////////////////////
- void P3DUndefinedObject::
- make_string(string &value) {
- value = "Undefined";
- }
|