#ifndef __PLASP__PDDL__EXPRESSIONS__EITHER_H #define __PLASP__PDDL__EXPRESSIONS__EITHER_H #include namespace plasp { namespace pddl { namespace expressions { //////////////////////////////////////////////////////////////////////////////////////////////////// // // Either // //////////////////////////////////////////////////////////////////////////////////////////////////// class Either: public NAry { public: static const Expression::Type ExpressionType = Expression::Type::Either; static const std::string Identifier; }; //////////////////////////////////////////////////////////////////////////////////////////////////// } } } #endif