summaryrefslogtreecommitdiff
path: root/cli/parser.hxx
diff options
context:
space:
mode:
authorBoris Kolpackov <boris@codesynthesis.com>2009-08-22 17:54:26 +0200
committerBoris Kolpackov <boris@codesynthesis.com>2009-08-22 17:54:26 +0200
commit64aa9e062d09d33de99ab4ddc0dc73828af2543e (patch)
tree4ca7cd26dec156b2d4c28f100679e3db12dace91 /cli/parser.hxx
parentdc7b8d2063dac867f2e87dbe764d2f3df2331e95 (diff)
Convert to the lower case naming convention
Diffstat (limited to 'cli/parser.hxx')
-rw-r--r--cli/parser.hxx22
1 files changed, 11 insertions, 11 deletions
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 <string>
#include <istream>
-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_;
};