00001 // Filename: ioPtaDatagramFloat.h 00002 // Created by: charles (10Jul00) 00003 // 00004 //////////////////////////////////////////////////////////////////// 00005 // 00006 // PANDA 3D SOFTWARE 00007 // Copyright (c) 2001, Disney Enterprises, Inc. All rights reserved 00008 // 00009 // All use of this software is subject to the terms of the Panda 3d 00010 // Software license. You should have received a copy of this license 00011 // along with this source code; you will also find a current copy of 00012 // the license at http://www.panda3d.org/license.txt . 00013 // 00014 // To contact the maintainers of this program write to 00015 // panda3d@yahoogroups.com . 00016 // 00017 //////////////////////////////////////////////////////////////////// 00018 00019 #ifndef _IO_PTA_DATAGRAM_FLOAT 00020 #define _IO_PTA_DATAGRAM_FLOAT 00021 00022 #include <pandabase.h> 00023 00024 #include "pointerToArray.h" 00025 #include "pta_float.h" 00026 00027 class Datagram; 00028 class DatagramIterator; 00029 00030 /////////////////////////////////////////////////////////////////// 00031 // Class : IoPtaDatagramFloat 00032 // Description : This class is used to read and write a PTA_float 00033 // from a Datagram, in support of Bam. It's not 00034 // intended to be constructed; it's just a convenient 00035 // place to scope these static methods which should be 00036 // called directly. 00037 //////////////////////////////////////////////////////////////////// 00038 class EXPCL_PANDA IoPtaDatagramFloat { 00039 public: 00040 static void write_datagram(Datagram &dest, CPTA_float array); 00041 static PTA_float read_datagram(DatagramIterator &source); 00042 }; 00043 00044 typedef IoPtaDatagramFloat IPD_float; 00045 00046 #endif // _IO_PTA_DATAGRAM_FLOAT