MeshKit
1.0
|
00001 /* 00002 * AF2RuleAppVisitor.hpp 00003 * 00004 * An AF2RuleAppVisitor is an object that visits AF2RuleApplication 00005 * objects produced by successful potential rule applications. It 00006 * is a pure virtual class that requires implementing the appropriate 00007 * visit method. 00008 */ 00009 00010 #ifndef AF2RULEAPPVISITOR_HPP 00011 #define AF2RULEAPPVISITOR_HPP 00012 00013 // MeshKit 00014 #include "meshkit/AF2RuleApplication.hpp" 00015 00016 class AF2RuleAppVisitor 00017 { 00018 public: 00019 00036 virtual void visit(AF2RuleApplication const & ruleApp) = 0; 00037 }; 00038 00039 #endif