missing file

This commit is contained in:
David Rose 2009-07-03 22:43:23 +00:00
parent e5cb25b7bd
commit 5b088c851c
2 changed files with 26 additions and 1 deletions

View File

@ -19,7 +19,7 @@
nppanda3d_common.h \
ppDownloadRequest.h ppDownloadRequest.I \
ppInstance.h ppInstance.I \
ppObject.h \
ppObject.h ppObject.I \
startup.h
#define INCLUDED_SOURCES \

View File

@ -0,0 +1,25 @@
// Filename: ppObject.I
// Created by: drose (03Jul09)
//
////////////////////////////////////////////////////////////////////
//
// 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: PPObject::set_p3d_object
// Access: Public
// Description: Returns the p3d_object this PPObject maps to. This
// may be NULL if the object is not fully initialized.
////////////////////////////////////////////////////////////////////
inline P3D_object *PPObject::
get_p3d_object() const {
return _p3d_object;
}