about summary refs log tree commit diff stats
path: root/data/maps/the_sturdy/metadata.txtpb
diff options
context:
space:
mode:
Diffstat (limited to 'data/maps/the_sturdy/metadata.txtpb')
0 files changed, 0 insertions, 0 deletions
a>
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