Moved the interpreter
[repair.git] / Repair / RepairInterpreter / Guidance.cc
1 #include <stdlib.h>
2 #include "Guidance.h"
3
4 Source::Source(Element * (*fptr)(structure *,model *)) {
5   functionptr=fptr;
6   setname=NULL;
7 }
8
9 Source::Source(char *sname) {
10   functionptr=NULL;
11   setname=sname;
12 }