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

35 lines
741 B
C
Raw Normal View History

#ifndef __SAS__PREDICATE_H
#define __SAS__PREDICATE_H
#include <iosfwd>
#include <string>
#include <vector>
namespace plasp
{
namespace sas
{
////////////////////////////////////////////////////////////////////////////////////////////////////
//
// Predicate
//
////////////////////////////////////////////////////////////////////////////////////////////////////
struct Predicate
{
std::string name;
std::vector<std::string> arguments;
};
////////////////////////////////////////////////////////////////////////////////////////////////////
std::ostream &operator <<(std::ostream &ostream, const Predicate &predicate);
////////////////////////////////////////////////////////////////////////////////////////////////////
}
}
#endif