school/cs236/submission/lab02/fact.h

15 lines
195 B
C
Raw Normal View History

2016-04-06 20:46:32 -07:00
#ifndef __FACT_H__
#define __FACT_H__
#include "predicate.h"
#include <vector>
#include <sstream>
using namespace std;
class fact {
public:
vector<predicate> pred_facts;
};
#endif