Panda3D
writableParam.I
Go to the documentation of this file.
1 /**
2  * PANDA 3D SOFTWARE
3  * Copyright (c) Carnegie Mellon University. All rights reserved.
4  *
5  * All use of this software is subject to the terms of the revised BSD
6  * license. You should have received a copy of this license along
7  * with this source code in a file named "LICENSE."
8  *
9  * @file writableParam.I
10  * @author jason
11  * @date 2000-06-13
12  */
13 
14 /**
15  *
16  */
17 INLINE WritableParam::
18 WritableParam(const Datagram &datagram) :
19  _packet(datagram)
20 {
21 }
22 
23 /**
24  *
25  */
26 INLINE WritableParam::
27 WritableParam(const WritableParam &copy) :
28  FactoryParam(copy),
29  _packet(copy._packet)
30 {
31 }
32 
33 /**
34  *
35  */
36 INLINE const Datagram& WritableParam::
37 get_datagram() {
38  return _packet;
39 }
The specific derivation of FactoryParam that contains the information needed by a TypedWritable objec...
Definition: writableParam.h:29
The base class of any number of specific pieces of parameter information that might be passed to a Fa...
Definition: factoryParam.h:30
An ordered list of data elements, formatted in memory for transmission over a socket or writing to a ...
Definition: datagram.h:38