~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
#ifndef CRISTALLVALUES_H
#define CRISTALLVALUES_H

#include <string>
#include <vector>

#include "CristallHeader.h"
#include "CristallValuesModel.h"

class CristallValues
{
public:
    int size();
    std::string getElement(int Id, Cristall::DataType Data);
    void loadData(const std::vector<CristallValuesModel>& Data);
    CristallValues search(std::string What, Cristall::DataType Data, Cristall::SearchType How);
    void addElement(std::string Label, std::string Value, ModelReciv Reciv);
    void addElement(std::string Label, ModelReciv Reciv);
    void clear();
    std::vector<CristallValuesModel> Summary;
};

#endif // CRISTALLVALUES_H