Go to the documentation of this file.00001 #ifndef actasp_LexComparator_h__guard
00002 #define actasp_LexComparator_h__guard
00003
00004 #include <list>
00005
00006 namespace actasp {
00007
00008 class AspFluentRef;
00009 class AspFluent;
00010
00011 struct LexComparator {
00012 bool operator()(const std::list<AspFluentRef>& a, const std::list<AspFluentRef> &b) const;
00013 bool operator()(const std::list<AspFluent>& a, const std::list<AspFluent> &b) const;
00014 };
00015
00016 }
00017
00018 #endif