school/cs236/submission/lab02/scheme.h

15 lines
204 B
C
Raw Normal View History

2016-04-06 20:46:32 -07:00
#ifndef __SCHEME_H__
#define __SCHEME_H__
#include "predicate.h"
#include <vector>
#include <iostream>
using namespace std;
class scheme {
public:
vector<predicate> pred_schemes;
};
#endif