1
0
Fork 0
school/cs236/submission/lab02/fact.h

15 Zeilen
195 B
C++

#ifndef __FACT_H__
#define __FACT_H__
#include "predicate.h"
#include <vector>
#include <sstream>
using namespace std;
class fact {
public:
vector<predicate> pred_facts;
};
#endif