Added a skeleton for a new stand-alone C++ -> XML translator
commitb47fb0d2a0d24936da302934cb9aebcf725d086e
authorMauro Iazzi <mauro.iazzi@gmail.com>
Sun, 14 Oct 2007 21:28:04 +0000 (14 23:28 +0200)
committerMauro Iazzi <mauro.iazzi@gmail.com>
Sun, 14 Oct 2007 21:28:04 +0000 (14 23:28 +0200)
treec068e0c7d14c75a744bf62681520cb861cdb856b
parentd153529b6ed6cc41f7096ca7a844e1f79c3acda3
Added a skeleton for a new stand-alone C++ -> XML translator
72 files changed:
parser/Makefile [new file with mode: 0644]
parser/Makefile.Debug [new file with mode: 0644]
parser/Makefile.Release [new file with mode: 0644]
parser/auto.cpp [new file with mode: 0644]
parser/generator.pro [new file with mode: 0644]
parser/main.cpp [new file with mode: 0644]
parser/parser/.binder.cpp.swp [new file with mode: 0644]
parser/parser/ast.cpp [new file with mode: 0644]
parser/parser/ast.h [new file with mode: 0644]
parser/parser/binder.cpp [new file with mode: 0644]
parser/parser/binder.h [new file with mode: 0644]
parser/parser/class_compiler.cpp [new file with mode: 0644]
parser/parser/class_compiler.h [new file with mode: 0644]
parser/parser/codemodel.cpp [new file with mode: 0644]
parser/parser/codemodel.h [new file with mode: 0644]
parser/parser/codemodel_finder.cpp [new file with mode: 0644]
parser/parser/codemodel_finder.h [new file with mode: 0644]
parser/parser/codemodel_fwd.h [new file with mode: 0644]
parser/parser/codemodel_pointer.h [new file with mode: 0644]
parser/parser/compiler_utils.cpp [new file with mode: 0644]
parser/parser/compiler_utils.h [new file with mode: 0644]
parser/parser/control.cpp [new file with mode: 0644]
parser/parser/control.h [new file with mode: 0644]
parser/parser/declarator_compiler.cpp [new file with mode: 0644]
parser/parser/declarator_compiler.h [new file with mode: 0644]
parser/parser/default_visitor.cpp [new file with mode: 0644]
parser/parser/default_visitor.h [new file with mode: 0644]
parser/parser/dumptree.cpp [new file with mode: 0644]
parser/parser/dumptree.h [new file with mode: 0644]
parser/parser/include/stdarg.h [new file with mode: 0644]
parser/parser/lexer.cpp [new file with mode: 0644]
parser/parser/lexer.h [new file with mode: 0644]
parser/parser/list.cpp [new file with mode: 0644]
parser/parser/list.h [new file with mode: 0644]
parser/parser/name_compiler.cpp [new file with mode: 0644]
parser/parser/name_compiler.h [new file with mode: 0644]
parser/parser/parser.cpp [new file with mode: 0644]
parser/parser/parser.h [new file with mode: 0644]
parser/parser/r++.macros [new file with mode: 0644]
parser/parser/rpp-allocator.h [new file with mode: 0644]
parser/parser/rpp/builtin-macros.cpp [new file with mode: 0644]
parser/parser/rpp/pp-cctype.h [new file with mode: 0644]
parser/parser/rpp/pp-configuration [new file with mode: 0644]
parser/parser/rpp/pp-engine-bits.h [new file with mode: 0644]
parser/parser/rpp/pp-engine.h [new file with mode: 0644]
parser/parser/rpp/pp-environment.h [new file with mode: 0644]
parser/parser/rpp/pp-fwd.h [new file with mode: 0644]
parser/parser/rpp/pp-internal.h [new file with mode: 0644]
parser/parser/rpp/pp-iterator.h [new file with mode: 0644]
parser/parser/rpp/pp-macro-expander.h [new file with mode: 0644]
parser/parser/rpp/pp-macro.h [new file with mode: 0644]
parser/parser/rpp/pp-main.cpp [new file with mode: 0644]
parser/parser/rpp/pp-qt-configuration [new file with mode: 0644]
parser/parser/rpp/pp-scanner.h [new file with mode: 0644]
parser/parser/rpp/pp-string.h [new file with mode: 0644]
parser/parser/rpp/pp-symbol.h [new file with mode: 0644]
parser/parser/rpp/pp.h [new file with mode: 0644]
parser/parser/rpp/preprocessor.cpp [new file with mode: 0644]
parser/parser/rpp/preprocessor.h [new file with mode: 0644]
parser/parser/rpp/rpp.pri [new file with mode: 0644]
parser/parser/rxx.pri [new file with mode: 0644]
parser/parser/rxx.pro [new file with mode: 0644]
parser/parser/rxx_allocator.h [new file with mode: 0644]
parser/parser/smallobject.cpp [new file with mode: 0644]
parser/parser/smallobject.h [new file with mode: 0644]
parser/parser/symbol.h [new file with mode: 0644]
parser/parser/tokens.cpp [new file with mode: 0644]
parser/parser/tokens.h [new file with mode: 0644]
parser/parser/type_compiler.cpp [new file with mode: 0644]
parser/parser/type_compiler.h [new file with mode: 0644]
parser/parser/visitor.cpp [new file with mode: 0644]
parser/parser/visitor.h [new file with mode: 0644]