Panda3D
 All Classes Functions Variables Enumerations
pStatProperties.h
1 // Filename: pStatProperties.h
2 // Created by: drose (17May01)
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 PSTATPROPERTIES_H
16 #define PSTATPROPERTIES_H
17 
18 #include "pandabase.h"
19 
20 
21 class PStatClient;
22 class PStatCollectorDef;
23 
24 EXPCL_PANDA_PSTATCLIENT int get_current_pstat_major_version();
25 EXPCL_PANDA_PSTATCLIENT int get_current_pstat_minor_version();
26 
27 #ifdef DO_PSTATS
28 void initialize_collector_def(const PStatClient *client, PStatCollectorDef *def);
29 #endif // DO_PSTATS
30 
31 #endif
32 
Defines the details about the Collectors: the name, the suggested color, etc.
Manages the communications to report statistics via a network connection to a remote PStatServer...
Definition: pStatClient.h:261