~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 CRISTALLGROUP_H
#define CRISTALLGROUP_H

#include <vector>
#include <cstdlib>
#include <iostream>
#include <cctype>
#include <map>
using namespace std;
class CristallGroup
{
public:
    void addGroup(string GroupName);
    string getGroup(int GroupID);
protected:
    vector <string> GroupList;
private:
    bool isGroup(string GroupName);
};

#endif // CRISTALLGROUP_H