summaryrefslogtreecommitdiff
path: root/utils/tfstats/playerspecifics.h
diff options
context:
space:
mode:
Diffstat (limited to 'utils/tfstats/playerspecifics.h')
-rw-r--r--utils/tfstats/playerspecifics.h45
1 files changed, 45 insertions, 0 deletions
diff --git a/utils/tfstats/playerspecifics.h b/utils/tfstats/playerspecifics.h
new file mode 100644
index 0000000..1cbd2de
--- /dev/null
+++ b/utils/tfstats/playerspecifics.h
@@ -0,0 +1,45 @@
+//========= Copyright Valve Corporation, All rights reserved. ============//
+//
+// Purpose: Interface to CPlayerSpecifics
+//
+// $Workfile: $
+// $Date: $
+//
+//------------------------------------------------------------------------------------------------------
+// $Log: $
+//
+// $NoKeywords: $
+//=============================================================================//
+#ifndef PLAYERSPECIFICS_H
+#define PLAYERSPECIFICS_H
+#ifdef WIN32
+#pragma once
+#endif
+#pragma warning (disable: 4786)
+
+#include "report.h"
+#include <map>
+#include <vector>
+#include <string>
+using namespace std;
+
+//------------------------------------------------------------------------------------------------------
+// Purpose: CPlayerSpecifics is a whole page report element that reports specific
+// data about each player in the game. Data such as favourite weapon, rank,
+// classes played, favourite class, and kills vs deaths.
+//------------------------------------------------------------------------------------------------------
+class CPlayerSpecifics :public CReport
+{
+private:
+
+ void init();
+
+
+ public:
+ explicit CPlayerSpecifics(){init();}
+
+ void generate();
+ void writeHTML(CHTMLFile& html);
+};
+
+#endif // PLAYERSPECIFICS_H