15 #ifndef DATANODETRANSMIT_H 16 #define DATANODETRANSMIT_H 18 #include "pandabase.h" 19 #include "eventParameter.h" 20 #include "typedWritable.h" 21 #include "deletedChain.h" 38 INLINE DataNodeTransmit(
const DataNodeTransmit ©);
39 INLINE
void operator = (
const DataNodeTransmit ©);
40 virtual ~DataNodeTransmit();
41 ALLOC_DELETED_CHAIN(DataNodeTransmit);
43 INLINE
void reserve(
int num_wires);
46 INLINE
bool has_data(
int index)
const;
50 void slot_data(
int index);
56 static void register_with_read_factory();
69 static void init_type() {
70 TypedWritable::init_type();
71 register_type(_type_handle,
"DataNodeTransmit",
72 TypedWritable::get_class_type());
75 return get_class_type();
77 virtual TypeHandle force_init_type() {init_type();
return get_class_type();}
83 #include "dataNodeTransmit.I" An optional parameter associated with an event.
This is the fundamental interface for extracting binary objects from a Bam file, as generated by a Ba...
Base class for objects that can be written to and read from Bam files.
This is the fundamental interface for writing binary objects to a Bam file, to be extracted later by ...
This is our own Panda specialization on the default STL list.
virtual void fillin(DatagramIterator &scan, BamReader *manager)
This internal function is intended to be called by each class's make_from_bam() method to read in all...
virtual void write_datagram(BamWriter *manager, Datagram &dg)
Writes the contents of this object to the datagram for shipping out to a Bam file.
virtual int complete_pointers(TypedWritable **p_list, BamReader *manager)
Receives an array of pointers, one for each time manager->read_pointer() was called in fillin()...
An instance of this class is passed to the Factory when requesting it to do its business and construc...
A class to retrieve the individual data elements previously stored in a Datagram. ...
TypeHandle is the identifier used to differentiate C++ class types.
An ordered list of data elements, formatted in memory for transmission over a socket or writing to a ...
Encapsulates the data generated from (or sent into) any particular DataNode.