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
972 B
C
Raw Normal View History

#ifndef __PLASP__SAS__PREDICATE_H
#define __PLASP__SAS__PREDICATE_H
#include <iosfwd>
#include <string>
#include <vector>
2017-05-12 14:17:57 +02:00
#include <tokenize/Tokenizer.h>
#include <colorlog/ColorStream.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:
2017-05-12 14:17:57 +02:00
static Predicate fromSAS(tokenize::Tokenizer<> &tokenizer);
2016-05-22 16:00:58 +02:00
using Arguments = std::vector<std::string>;
public:
void printAsSAS(colorlog::ColorStream &stream) const;
void printAsASP(colorlog::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