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

#ifndef FREEVARS_H
#define FREEVARS_H

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

#endif