#ifndef AST_LEAF_H #define AST_LEAF_H #include "astnode.h" class AstLeaf : public AstNode { friend Bu::Formatter &operator<<( Bu::Formatter &f, const AstLeaf &l ); public: AstLeaf( Type eType ); virtual ~AstLeaf(); private: }; Bu::Formatter &operator<<( Bu::Formatter &f, const AstLeaf &l ); #endif