Update comments and literals referencing gccxml
authorLudwig Jäck <ludwig.jaeck@intra2net.com>
Thu, 6 Jun 2024 09:19:49 +0000 (11:19 +0200)
committerLudwig Jäck <ludwig.jaeck@intra2net.com>
Fri, 7 Jun 2024 08:02:01 +0000 (10:02 +0200)
codegen/README
codegen/codegen-stubhead.hxx
codegen/main.cpp
doc/Doxyfile.in
doc/index.doc

index f0be2c3..1c33556 100644 (file)
@@ -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
index 19735c1..3fd20a1 100644 (file)
@@ -31,7 +31,7 @@ on this file might be covered by the GNU General Public License.
 #include <command.hxx>
 
 #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
index e3a89ec..f2e1a11 100644 (file)
@@ -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;
     }
 
index 1ea1784..3f1c1ef 100644 (file)
@@ -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. 
index c501370..7d0d0b7 100644 (file)
@@ -24,7 +24,7 @@ Using libt2n and its code generator only the server procedure implementations ha
  \par libt2n
  - boost <http://www.boost.org/> (serialization <http://www.boost.org/libs/serialization/>)
  \par libt2n-codegen
- - gccxml <http://www.gccxml.org>
+ - castxml <https://github.com/CastXML/CastXML>
  - libxmlpp <http://libxmlplusplus.sourceforge.net/>
  \par client-wrapper
  - boost <http://www.boost.org/> (bind <http://www.boost.org/libs/bind/>, function <http://www.boost.org/libs/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