From c10bde23a260d9990df27d6cf684b6c73d73d4c2 Mon Sep 17 00:00:00 2001 From: =?utf8?q?Ludwig=20J=C3=A4ck?= Date: Thu, 6 Jun 2024 11:19:49 +0200 Subject: [PATCH] Update comments and literals referencing gccxml --- codegen/README | 4 ++-- codegen/codegen-stubhead.hxx | 2 +- codegen/main.cpp | 2 +- doc/Doxyfile.in | 2 +- doc/index.doc | 4 ++-- 5 files changed, 7 insertions(+), 7 deletions(-) diff --git a/codegen/README b/codegen/README index f0be2c3..1c33556 100644 --- a/codegen/README +++ b/codegen/README @@ -1,4 +1,4 @@ -code generator using gccxml and libxml++ +code generator using castxml and libxml++ for example usage take a look at the libt2n-example package @@ -19,5 +19,5 @@ examples in separate packages: group header file for include file dependencies: - simple -- i don't see a solution using gccxml +- i don't see a solution using castxml - better than extracting all the includes from the file and adding them to the generated code diff --git a/codegen/codegen-stubhead.hxx b/codegen/codegen-stubhead.hxx index 19735c1..3fd20a1 100644 --- a/codegen/codegen-stubhead.hxx +++ b/codegen/codegen-stubhead.hxx @@ -31,7 +31,7 @@ on this file might be covered by the GNU General Public License. #include #ifdef __castxml__ -// used during parsing run with gccxml +// used during parsing run with castxml /** @brief mark a function to export it via libt2n @par Example diff --git a/codegen/main.cpp b/codegen/main.cpp index e3a89ec..f2e1a11 100644 --- a/codegen/main.cpp +++ b/codegen/main.cpp @@ -627,7 +627,7 @@ main(int argc, char* argv[]) } if (argc < 3) { - std::cerr << "Usage: " << argv[0] << "default-group gccxml-file1 gccxml-file2 ... " << std::endl; + std::cerr << "Usage: " << argv[0] << "default-group castxml-file1 castxml-file2 ... " << std::endl; return 1; } diff --git a/doc/Doxyfile.in b/doc/Doxyfile.in index 1ea1784..3f1c1ef 100644 --- a/doc/Doxyfile.in +++ b/doc/Doxyfile.in @@ -1002,7 +1002,7 @@ INCLUDE_FILE_PATTERNS = # undefined via #undef or recursively expanded use the := operator # instead of the = operator. -PREDEFINED = __GCCXML__ +PREDEFINED = __castxml__ # If the MACRO_EXPANSION and EXPAND_ONLY_PREDEF tags are set to YES then # this tag can be used to specify a list of macro names that should be expanded. diff --git a/doc/index.doc b/doc/index.doc index c501370..7d0d0b7 100644 --- a/doc/index.doc +++ b/doc/index.doc @@ -24,7 +24,7 @@ Using libt2n and its code generator only the server procedure implementations ha \par libt2n - boost (serialization ) \par libt2n-codegen - - gccxml + - castxml - libxmlpp \par client-wrapper - boost (bind , function ) @@ -53,7 +53,7 @@ Using libt2n and its code generator only the server procedure implementations ha - \anchor notes3 [3] Figure: Remote procedure call overview, http://jan.newmarch.name/webservices/rpc_stub.png , Jan Newmarch "Web services" http://jan.newmarch.name/webservices/tutorial.html - \anchor notes4 - [4] in fact gccxml is used to parse the C++ code and the XML output of gccxml is used as input for the code generator + [4] in fact castxml is used to parse the C++ code and the XML output of castxml is used as input for the code generator - \anchor notes5 [5] interface description language (IDL), http://en.wikipedia.org/wiki/Interface_description_language - \anchor notes6 -- 1.7.1