This repository has been archived on 2023-07-19. You can view files and clone it, but cannot push or open issues or pull requests.
Files
plasp/src/plasp/pddl/expressions/Imply.cpp

24 lines
523 B
C++

#include <plasp/pddl/expressions/Imply.h>
namespace plasp
{
namespace pddl
{
namespace expressions
{
////////////////////////////////////////////////////////////////////////////////////////////////////
//
// Imply
//
////////////////////////////////////////////////////////////////////////////////////////////////////
// TODO: make static character string literal
const std::string Imply::Identifier = "imply";
////////////////////////////////////////////////////////////////////////////////////////////////////
}
}
}