#ifndef BTNODEVISITOR_H #define BTNODEVISITOR_H template class btNodeVisitor; #include "binTreeNode.h" template class btNodeVisitor { public: virtual R visit(binTreeNode *p, const S& x) = 0; }; #endif