create source phrase in rule

This commit is contained in:
Hieu Hoang 2014-02-21 13:03:43 +00:00
parent 324d16ee8e
commit 6b936f3d8d
2 changed files with 40 additions and 0 deletions

View File

@ -0,0 +1,18 @@
/*
* RuleSymbol.cpp
*
* Created on: 21 Feb 2014
* Author: hieu
*/
#include <RuleSymbol.h>
RuleSymbol::RuleSymbol() {
// TODO Auto-generated constructor stub
}
RuleSymbol::~RuleSymbol() {
// TODO Auto-generated destructor stub
}

View File

@ -0,0 +1,22 @@
/*
* RuleSymbol.h
*
* Created on: 21 Feb 2014
* Author: hieu
*/
#ifndef RULESYMBOL_H_
#define RULESYMBOL_H_
#include <iostream>
class RuleSymbol {
public:
RuleSymbol();
virtual ~RuleSymbol();
virtual void Debug(std::ostream &out) const = 0;
};
#endif /* RULESYMBOL_H_ */