#ifndef __PLASP__PDDL__EXPRESSIONS__UNSUPPORTED_H #define __PLASP__PDDL__EXPRESSIONS__UNSUPPORTED_H #include #include namespace plasp { namespace pddl { namespace expressions { //////////////////////////////////////////////////////////////////////////////////////////////////// // // Unsupported // //////////////////////////////////////////////////////////////////////////////////////////////////// class Unsupported: public ExpressionCRTP { public: static const Expression::Type ExpressionType = Expression::Type::Unsupported; static UnsupportedPointer parse(Context &context); public: const std::string &type() const; private: std::string m_type; }; //////////////////////////////////////////////////////////////////////////////////////////////////// } } } #endif