00001 #include "RuleParser/RuleFactory.h" 00002 00003 using namespace RuleParser; 00004 00005 Rule* RuleFactory::createRule(const ParameterDescription& 00006 ,int 00007 ,int 00008 ,bool 00009 ) 00010 { 00011 assert(0 && "Not implimented: int type factory"); 00012 }; 00013 00014 Rule* RuleFactory::createRule(const ParameterDescription&, 00015 int , 00016 double, 00017 bool 00018 ) 00019 { 00020 assert(0 && "Not implimented: double type factory"); 00021 }; 00022 00023 Rule* RuleFactory::createRule(const ParameterDescription&, 00024 int, 00025 const std::string&, 00026 bool 00027 ) 00028 { 00029 assert(0 && "Not implimented: string type factory"); 00030 };