Panda3D
 All Classes Functions Variables Enumerations
mayaToEgg_client.h
00001 // Filename: mayaToEgg_client.h
00002 // Adapted by: cbrunner (09Nov09)
00003 //
00004 ////////////////////////////////////////////////////////////////////
00005 //
00006 // PANDA 3D SOFTWARE
00007 // Copyright (c) Carnegie Mellon University.  All rights reserved.
00008 //
00009 // All use of this software is subject to the terms of the revised BSD
00010 // license.  You should have received a copy of this license along
00011 // with this source code in a file named "LICENSE."
00012 //
00013 ////////////////////////////////////////////////////////////////////
00014 
00015 #ifndef MAYATOEGGCLIENT_H
00016 #define MAYATOEGGCLIENT_H
00017 
00018 #include "somethingToEgg.h"
00019 #include "queuedConnectionManager.h"
00020 #include "queuedConnectionReader.h"
00021 #include "connectionWriter.h"
00022 
00023 ////////////////////////////////////////////////////////////////////
00024 //       Class : MayaToEggClient
00025 // Description :
00026 ////////////////////////////////////////////////////////////////////
00027 class MayaToEggClient : public SomethingToEgg {
00028 public:
00029   MayaToEggClient();
00030 
00031   QueuedConnectionManager *qManager;
00032   QueuedConnectionReader *qReader;
00033   ConnectionWriter *cWriter;
00034   NetAddress server;
00035 };
00036 
00037 #endif
 All Classes Functions Variables Enumerations