#ifndef If_h #define If_h #include "Primitive.h" class If : public Primitive { public: If(void); void execute(void* result, Tree& tree); ~If(void); }; #endif