15 lines
204 B
C
15 lines
204 B
C
|
#ifndef __SCHEME_H__
|
||
|
#define __SCHEME_H__
|
||
|
|
||
|
#include "predicate.h"
|
||
|
#include <vector>
|
||
|
#include <iostream>
|
||
|
|
||
|
using namespace std;
|
||
|
|
||
|
class scheme {
|
||
|
public:
|
||
|
vector<predicate> pred_schemes;
|
||
|
};
|
||
|
#endif
|