// // Cforall Version 1.0.0 Copyright (C) 2015 University of Waterloo // // The contents of this file are covered under the licence agreement in the // file "LICENCE" distributed with Cforall. // // BaseSyntaxNode.h -- // // Author : Thierry Delisle // Created On : Tue Feb 14 07:44:20 2017 // Last Modified By : // Last Modified On : // Update Count : // #pragma once #include "Common/utility.h" #include "Visitor.h" class BaseSyntaxNode { public: CodeLocation location; virtual ~BaseSyntaxNode() {} virtual void accept( Visitor & v ) = 0; }; // Local Variables: // // tab-width: 4 // // mode: c++ // // compile-command: "make install" // // End: //