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/include/plasp/sas/Predicate.h

48 lines
965 B
C
Raw Normal View History

#ifndef __PLASP__SAS__PREDICATE_H
#define __PLASP__SAS__PREDICATE_H
#include <iosfwd>
#include <string>
#include <vector>
#include <plasp/output/ColorStream.h>
2016-05-27 03:58:59 +02:00
#include <parsebase/Parser.h>
namespace plasp
{
namespace sas
{
////////////////////////////////////////////////////////////////////////////////////////////////////
//
// Predicate
//
////////////////////////////////////////////////////////////////////////////////////////////////////
2016-05-22 16:00:58 +02:00
class Predicate
{
2016-05-22 16:00:58 +02:00
public:
static Predicate fromSAS(parsebase::Parser<> &parser);
2016-05-22 16:00:58 +02:00
using Arguments = std::vector<std::string>;
public:
void printAsSAS(output::ColorStream &stream) const;
void printAsASP(output::ColorStream &stream) const;
2016-05-22 16:00:58 +02:00
const std::string &name() const;
const Arguments &arguments() const;
private:
std::string m_name;
std::vector<std::string> m_arguments;
};
////////////////////////////////////////////////////////////////////////////////////////////////////
}
}
#endif