Panda3D
factoryParam.I
1 // Filename: factoryParam.I
2 // Created by: drose (08May00)
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 ////////////////////////////////////////////////////////////////////
16 // Function: FactoryParams::Constructor
17 // Access: Public
18 // Description:
19 ////////////////////////////////////////////////////////////////////
20 INLINE FactoryParam::
21 FactoryParam() {
22 }
23 
24 ////////////////////////////////////////////////////////////////////
25 // Function: FactoryParams::Copy Constructor
26 // Access: Public
27 // Description:
28 ////////////////////////////////////////////////////////////////////
29 INLINE FactoryParam::
30 FactoryParam(const FactoryParam &) {
31 }
32 
33 ////////////////////////////////////////////////////////////////////
34 // Function: FactoryParams::Copy Assignment Operator
35 // Access: Public
36 // Description:
37 ////////////////////////////////////////////////////////////////////
38 INLINE void FactoryParam::
39 operator = (const FactoryParam &) {
40 }
41 
42 ////////////////////////////////////////////////////////////////////
43 // Function: FactoryParams::Destructor
44 // Access: Public
45 // Description:
46 ////////////////////////////////////////////////////////////////////
47 INLINE FactoryParam::
48 ~FactoryParam() {
49 }
The base class of any number of specific pieces of parameter information that might be passed to a Fa...
Definition: factoryParam.h:34