1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18
#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