Panda3D
gtkStatsServer.h
1 // Filename: gtkStatsServer.h
2 // Created by: drose (16Jan06)
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 #ifndef GTKSTATSSERVER_H
16 #define GTKSTATSSERVER_H
17 
18 #include "pandatoolbase.h"
19 #include "pStatServer.h"
20 
21 ////////////////////////////////////////////////////////////////////
22 // Class : GtkStatsServer
23 // Description : The class that owns the main loop, waiting for client
24 // connections.
25 ////////////////////////////////////////////////////////////////////
26 class GtkStatsServer : public PStatServer {
27 public:
28  virtual PStatMonitor *make_monitor();
29 };
30 
31 #endif
32 
The class that owns the main loop, waiting for client connections.
This is an abstract class that presents the interface to any number of different front-ends for the s...
Definition: pStatMonitor.h:43
The overall manager of the network connections.
Definition: pStatServer.h:41