Panda3D
 All Classes Functions Variables Enumerations
directdClient.h
1 // Filename: directdClient.h
2 // Created by: skyler 2002.04.08
3 //
4 ////////////////////////////////////////////////////////////////////
5 //
6 // PANDA 3D SOFTWARE
7 // Copyright (c) Carnegie Mellon University. All rights reserved.
8 //
9 // All use of this software is subject to the terms of the revised BSD
10 // license. You should have received a copy of this license along
11 // with this source code in a file named "LICENSE."
12 //
13 ////////////////////////////////////////////////////////////////////
14 
15 #include "directd.h"
16 
17 // Description: DirectDClient is a test app for DriectDServer.
18 class DirectDClient: public DirectD {
19 public:
20  DirectDClient();
21  ~DirectDClient();
22 
23  void run_client(const string& host, int port);
24 
25 protected:
26  void cli_command(const string& cmd);
27 };
28 
DirectDClient is a test app for DriectDServer.
Definition: directdClient.h:18
DirectD is a client/server app for starting panda/direct.
Definition: directd.h:63