patrick
/
plasp
Archived
1
0
Fork 0
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.
plasp/lib/pddlparse/include/pddlparse/detail/parsing/InitialState.h

26 lines
647 B
C++

#ifndef __PDDL_PARSE__DETAIL__PARSING__INITIAL_STATE_H
#define __PDDL_PARSE__DETAIL__PARSING__INITIAL_STATE_H
#include <pddlparse/Context.h>
#include <pddlparse/detail/ASTContext.h>
namespace pddl
{
namespace detail
{
////////////////////////////////////////////////////////////////////////////////////////////////////
//
// InitialState
//
////////////////////////////////////////////////////////////////////////////////////////////////////
ast::InitialState parseInitialState(Context &context, ASTContext &expressionContext);
////////////////////////////////////////////////////////////////////////////////////////////////////
}
}
#endif