about summary refs log tree commit diff stats
path: root/freevars.h
blob: 923f211573a1d6df4b2a2334eb190fff705680ba (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
#include <map>
#include <string>
#include <vector>

using namespace::std;

#ifndef FREEVARS_H
#define FREEVARS_H

class freevars
{
public:
    freevars();
    void addVar(string name, string filename);
    string parse(string in);
    
private:
    map<string, vector<string>* >* vars;
};

#endif