STAR++ v0.2.2
C++ implementation of STAR voting
Loading...
Searching...
No Matches
resultset_p.h
1#ifndef RESULTSSET_P_H
2#define RESULTSSET_P_H
3
4// Qt Includes
5#include <QFile>
6
7// Qx Includes
8#include <qx/core/qx-error.h>
9
10// Project Includes
11#include "star/expectedelectionresult.h"
12
13namespace Star
14{
16class ResultSetReader
17{
18//-Instance Variables--------------------------------------------------------------------------------------------------
19private:
20 QList<ExpectedElectionResult>* mTargetList;
21 QFile mFile;
22
23//-Constructor--------------------------------------------------------------------------------------------------------
24public:
25 ResultSetReader(QList<ExpectedElectionResult>* targetList, const QString& filePath);
26
27//-Instance Functions-------------------------------------------------------------------------------------------------
28public:
29 Qx::Error readInto();
30};
32}
33
34#endif // RESULTSSET_P_H
The Star namespace is the main namespace through which all functionality of the STAR++ library is acc...
Definition calculator.cpp:21