-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathStatistics.h
More file actions
37 lines (32 loc) · 814 Bytes
/
Statistics.h
File metadata and controls
37 lines (32 loc) · 814 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
///////////////////////////////////////////////////////////
// Statistics.h
// Implementation of the Class Statistics
// Created on: 05-Vas-2014 17:36:46
// Original author: Povilas
///////////////////////////////////////////////////////////
#if !defined(STATISTICS_H)
#define STATISTICS_H
#include "ServeRequest.h"
/** \brief Class that implements statistical calculations
*
*/
class Statistics : public ServeRequest
{
public:
/** \brief Constructor
*
* \param InitDamisService* pointer to the InitDamisService object
*
*/
Statistics(InitDamisService*);
/** \brief Calulates statistics of the data section
*
* \return void
*
*/
void statPrimitives();
/** \brief Destructor
*/
virtual ~Statistics();
};
#endif //!defined(STATISTICS_H)