Blang/src/lib/src/LibRule.hpp

14 lines
160 B
C++
Raw Normal View History

2016-04-22 21:46:31 +02:00
#ifndef LIBRULE_HPP
#define LIBRULE_HPP
#include <map>
#include <string>
class LibRule{
private:
std::map<std::string, std::string> _properties;
};
#endif