Panda3D
Loading...
Searching...
No Matches
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 */
17INLINE WritableParam::
18WritableParam(const Datagram &datagram) :
19 _packet(datagram)
20{
21}
22
23/**
24 *
25 */
26INLINE WritableParam::
27WritableParam(const WritableParam &copy) :
28 FactoryParam(copy),
29 _packet(copy._packet)
30{
31}
32
33/**
34 *
35 */
36INLINE const Datagram& WritableParam::
37get_datagram() {
38 return _packet;
39}
An ordered list of data elements, formatted in memory for transmission over a socket or writing to a ...
Definition datagram.h:38
The base class of any number of specific pieces of parameter information that might be passed to a Fa...
The specific derivation of FactoryParam that contains the information needed by a TypedWritable objec...