Blang/src/lib/src/LibRule.hpp

14 lines
160 B
C++

#ifndef LIBRULE_HPP
#define LIBRULE_HPP
#include <map>
#include <string>
class LibRule{
private:
std::map<std::string, std::string> _properties;
};
#endif