From 64aa9e062d09d33de99ab4ddc0dc73828af2543e Mon Sep 17 00:00:00 2001 From: Boris Kolpackov Date: Sat, 22 Aug 2009 17:54:26 +0200 Subject: Convert to the lower case naming convention --- cli/parser.hxx | 22 +++++++++++----------- 1 file changed, 11 insertions(+), 11 deletions(-) (limited to 'cli/parser.hxx') diff --git a/cli/parser.hxx b/cli/parser.hxx index d1f4b4b..f09816f 100644 --- a/cli/parser.hxx +++ b/cli/parser.hxx @@ -9,19 +9,19 @@ #include #include -class Token; -class Lexer; +class token; +class lexer; -class Parser +class parser { public: - struct InvalidInput {}; + struct invalid_input {}; void parse (std::istream& is, std::string const& id); private: - struct Error {}; + struct error {}; void def_unit (); @@ -30,7 +30,7 @@ private: include_decl (); bool - decl (Token&); + decl (token&); void namespace_def (); @@ -39,21 +39,21 @@ private: class_def (); bool - option_def (Token&); + option_def (token&); bool - qualified_name (Token&); + qualified_name (token&); bool - fundamental_type (Token&); + fundamental_type (token&); private: void - recover (Token& t); + recover (token& t); private: bool valid_; - Lexer* lexer_; + lexer* lexer_; std::string const* id_; }; -- cgit v1.1