~berciu-deactivatedaccount/cristallparser/unstable-qt

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
#ifndef CRISTALLVALUES_H
#define CRISTALLVALUES_H
#include <map>
#include <iostream>
#include <cctype>
#include <map>
#include <sstream>
#include <vector>
#include "CristallHeader.h"
#include "CristallValuesModel.h"

using namespace std;
using namespace Cristall;

class CristallValues
{
public:

    int ConvertStringtoInt(string Data);
    int size();
    string ConvertInttoString(int Data);
    string getElement(int Id, DataType Data);
    void loadData(const vector <CristallValuesModel> & Data);
    CristallValues search(string What, DataType Data, SearchType How);
    void addElement(string Label, string Value);
    void clear();
    vector < CristallValuesModel > Summary;
private:
};

#endif // CRISTALLVALUES_H