00001 00002 00003 00004 00005 00006 00007 // This program is free software: you can redistribute it and/or modify 00008 // it under the terms of the GNU General Public License as published by 00009 // the Free Software Foundation, version 3 of the License. 00010 // 00011 // This program is distributed in the hope that it will be useful, 00012 // but WITHOUT ANY WARRANTY; without even the implied warranty of 00013 // MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the 00014 // GNU General Public License for more details. 00015 // 00016 // You should have received a copy of the GNU General Public License 00017 // along with this program. If not, see <http://www.gnu.org/licenses/>. 00018 00019 #ifndef LEFT_ARROW_RULE_H 00020 #define LEFT_ARROW_RULE_H 00021 #include "Rule.h" 00022 00023 class LeftRestrictionArrowRule : public Rule 00024 { 00025 public: 00026 LeftRestrictionArrowRule(const std::string &name, 00027 const SymbolPair ¢er, 00028 const OtherSymbolTransducerVector &contexts); 00029 00031 OtherSymbolTransducer compile(void); 00032 }; 00033 00034 #endif // LEFT_ARROW_RULE_H
1.6.3