propane/RuleDefinition.h
2010-04-09 17:40:31 -04:00

17 lines
240 B
C++

#ifndef RULEDEFINITION_H
#define RULEDEFINITION_H
#include <string>
class RuleDefinition
{
public:
bool create(const std::string & name, const std::string & definition);
protected:
std::string m_name;
};
#endif