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

using namespace Cristall;
using namespace std;

class CristallValuesModel
{

public:
    string Value;
    string Label;
};

#endif