You are viewing a plain text version of this content. The canonical link for it is here.
Posted to java-dev@axis.apache.org by su...@apache.org on 2003/10/20 05:27:33 UTC

cvs commit: ws-axis/c/src/wcg BeanClass.cpp Deploy.cpp File.cpp Method.cpp TranslationUnit.cpp Variable.cpp WCGenerator.cpp WSClass.cpp actions.cpp cpp.l cpp.y cpplex.cpp cppyacc.cpp

susantha    2003/10/19 20:27:33

  Modified:    c/src/wcg BeanClass.cpp Deploy.cpp File.cpp Method.cpp
                        TranslationUnit.cpp Variable.cpp WCGenerator.cpp
                        WSClass.cpp actions.cpp cpp.l cpp.y cpplex.cpp
                        cppyacc.cpp
  Log:
  updated source files to use new  include files folder structure
  
  Revision  Changes    Path
  1.11      +1 -1      ws-axis/c/src/wcg/BeanClass.cpp
  
  Index: BeanClass.cpp
  ===================================================================
  RCS file: /home/cvs/ws-axis/c/src/wcg/BeanClass.cpp,v
  retrieving revision 1.10
  retrieving revision 1.11
  diff -u -r1.10 -r1.11
  --- BeanClass.cpp	15 Oct 2003 06:11:29 -0000	1.10
  +++ BeanClass.cpp	20 Oct 2003 03:27:32 -0000	1.11
  @@ -68,7 +68,7 @@
   #pragma warning (disable : 4786)
   #endif
   
  -#include "BeanClass.h"
  +#include <axis/wcg/BeanClass.h>
   
   //////////////////////////////////////////////////////////////////////
   // Construction/Destruction
  
  
  
  1.9       +2 -2      ws-axis/c/src/wcg/Deploy.cpp
  
  Index: Deploy.cpp
  ===================================================================
  RCS file: /home/cvs/ws-axis/c/src/wcg/Deploy.cpp,v
  retrieving revision 1.8
  retrieving revision 1.9
  diff -u -r1.8 -r1.9
  --- Deploy.cpp	15 Oct 2003 06:11:29 -0000	1.8
  +++ Deploy.cpp	20 Oct 2003 03:27:32 -0000	1.9
  @@ -10,8 +10,8 @@
   #include <unistd.h>
   #endif
   
  -#include "TranslationUnit.h"
  -#include "File.h"
  +#include <axis/wcg/TranslationUnit.h>
  +#include <axis/wcg/File.h>
   #include <string>
   #include <map>
   #include <iostream>
  
  
  
  1.4       +1 -1      ws-axis/c/src/wcg/File.cpp
  
  Index: File.cpp
  ===================================================================
  RCS file: /home/cvs/ws-axis/c/src/wcg/File.cpp,v
  retrieving revision 1.3
  retrieving revision 1.4
  diff -u -r1.3 -r1.4
  --- File.cpp	15 Oct 2003 06:11:29 -0000	1.3
  +++ File.cpp	20 Oct 2003 03:27:32 -0000	1.4
  @@ -5,7 +5,7 @@
   #pragma warning (disable : 4786)
   #endif
   
  -#include "File.h"
  +#include <axis/wcg/File.h>
   
   //////////////////////////////////////////////////////////////////////
   // Construction/Destruction
  
  
  
  1.12      +1 -1      ws-axis/c/src/wcg/Method.cpp
  
  Index: Method.cpp
  ===================================================================
  RCS file: /home/cvs/ws-axis/c/src/wcg/Method.cpp,v
  retrieving revision 1.11
  retrieving revision 1.12
  diff -u -r1.11 -r1.12
  --- Method.cpp	15 Oct 2003 06:11:29 -0000	1.11
  +++ Method.cpp	20 Oct 2003 03:27:32 -0000	1.12
  @@ -67,7 +67,7 @@
   #pragma warning (disable : 4786)
   #endif
   
  -#include "Method.h"
  +#include <axis/wcg/Method.h>
   
   //////////////////////////////////////////////////////////////////////
   // Construction/Destruction
  
  
  
  1.8       +9 -9      ws-axis/c/src/wcg/TranslationUnit.cpp
  
  Index: TranslationUnit.cpp
  ===================================================================
  RCS file: /home/cvs/ws-axis/c/src/wcg/TranslationUnit.cpp,v
  retrieving revision 1.7
  retrieving revision 1.8
  diff -u -r1.7 -r1.8
  --- TranslationUnit.cpp	15 Oct 2003 06:11:29 -0000	1.7
  +++ TranslationUnit.cpp	20 Oct 2003 03:27:32 -0000	1.8
  @@ -68,8 +68,8 @@
   #pragma warning (disable : 4786)
   #endif
   
  -#include "TranslationUnit.h"
  -#include "File.h"
  +#include <axis/wcg/TranslationUnit.h>
  +#include <axis/wcg/File.h>
   #include <iostream>
   #include <string>
   using namespace std;
  @@ -153,13 +153,13 @@
   		file << endl;
   		//add includes
   		file << "#include \"" << m_sWsFileName.c_str() << "\"" << endl;
  -		file << "#include <WrapperClassHandler.h>" << endl;
  -		file << "#include <IMessageData.h>" << endl;
  -		file << "#include <GDefine.h>" << endl;
  -		file << "#include <IWrapperSoapDeSerializer.h>" << endl;
  -		file << "#include <IWrapperSoapSerializer.h>" << endl;
  -		file << "#include <ISoapMethod.h>" << endl;
  -		file << "#include <IParam.h>" << endl;
  +		file << "#include <axis/common/WrapperClassHandler.h>" << endl;
  +		file << "#include <axis/common/IMessageData.h>" << endl;
  +		file << "#include <axis/common/GDefine.h>" << endl;
  +		file << "#include <axis/common/IWrapperSoapDeSerializer.h>" << endl;
  +		file << "#include <axis/common/IWrapperSoapSerializer.h>" << endl;
  +		file << "#include <axis/common/ISoapMethod.h>" << endl;
  +		file << "#include <axis/common/IParam.h>" << endl;
   		file << endl;
   		//generate wrapper class declaration
   		m_pWSClass->GenerateClassDef(file);
  
  
  
  1.10      +1 -1      ws-axis/c/src/wcg/Variable.cpp
  
  Index: Variable.cpp
  ===================================================================
  RCS file: /home/cvs/ws-axis/c/src/wcg/Variable.cpp,v
  retrieving revision 1.9
  retrieving revision 1.10
  diff -u -r1.9 -r1.10
  --- Variable.cpp	15 Oct 2003 06:11:29 -0000	1.9
  +++ Variable.cpp	20 Oct 2003 03:27:32 -0000	1.10
  @@ -70,7 +70,7 @@
   #pragma warning (disable : 4786)
   #endif
   
  -#include "Variable.h"
  +#include <axis/wcg/Variable.h>
   
   //////////////////////////////////////////////////////////////////////
   // Construction/Destruction
  
  
  
  1.4       +3 -3      ws-axis/c/src/wcg/WCGenerator.cpp
  
  Index: WCGenerator.cpp
  ===================================================================
  RCS file: /home/cvs/ws-axis/c/src/wcg/WCGenerator.cpp,v
  retrieving revision 1.3
  retrieving revision 1.4
  diff -u -r1.3 -r1.4
  --- WCGenerator.cpp	15 Oct 2003 06:11:29 -0000	1.3
  +++ WCGenerator.cpp	20 Oct 2003 03:27:33 -0000	1.4
  @@ -5,13 +5,13 @@
   #pragma warning (disable : 4786)
   #endif
   
  -#include "WCGenerator.h"
  +#include <axis/wcg/WCGenerator.h>
   
   //////////////////////////////////////////////////////////////////////
   // Construction/Destruction
   //////////////////////////////////////////////////////////////////////
  -#include "WSClass.h"
  -#include "TranslationUnit.h"
  +#include <axis/wcg/WSClass.h>
  +#include <axis/wcg/TranslationUnit.h>
   
   WCGenerator::WCGenerator()
   {
  
  
  
  1.10      +1 -1      ws-axis/c/src/wcg/WSClass.cpp
  
  Index: WSClass.cpp
  ===================================================================
  RCS file: /home/cvs/ws-axis/c/src/wcg/WSClass.cpp,v
  retrieving revision 1.9
  retrieving revision 1.10
  diff -u -r1.9 -r1.10
  --- WSClass.cpp	15 Oct 2003 06:11:29 -0000	1.9
  +++ WSClass.cpp	20 Oct 2003 03:27:33 -0000	1.10
  @@ -67,7 +67,7 @@
   #pragma warning (disable : 4786)
   #endif
   
  -#include "WSClass.h"
  +#include <axis/wcg/WSClass.h>
   
   //////////////////////////////////////////////////////////////////////
   // Construction/Destruction
  
  
  
  1.7       +4 -4      ws-axis/c/src/wcg/actions.cpp
  
  Index: actions.cpp
  ===================================================================
  RCS file: /home/cvs/ws-axis/c/src/wcg/actions.cpp,v
  retrieving revision 1.6
  retrieving revision 1.7
  diff -u -r1.6 -r1.7
  --- actions.cpp	15 Oct 2003 06:11:29 -0000	1.6
  +++ actions.cpp	20 Oct 2003 03:27:33 -0000	1.7
  @@ -7,10 +7,10 @@
   #include <map>
   
   using namespace std;
  -#include "actions.h"
  -#include "cppyacc.hpp"
  -#include "Variable.h"
  -#include "Method.h"
  +#include <axis/wcg/actions.h>
  +#include <axis/wcg/cppyacc.hpp>
  +#include <axis/wcg/Variable.h>
  +#include <axis/wcg/Method.h>
   
   //global variables used by the parser
   map<string,int> lexer_keys; //keyword map in the lexical analyzer.
  
  
  
  1.2       +1 -1      ws-axis/c/src/wcg/cpp.l
  
  Index: cpp.l
  ===================================================================
  RCS file: /home/cvs/ws-axis/c/src/wcg/cpp.l,v
  retrieving revision 1.1
  retrieving revision 1.2
  diff -u -r1.1 -r1.2
  --- cpp.l	29 Jul 2003 08:26:47 -0000	1.1
  +++ cpp.l	20 Oct 2003 03:27:33 -0000	1.2
  @@ -5,7 +5,7 @@
     
     using namespace std;
   
  -  #include "cppyacc.hpp"
  +  #include <axis/wcg/cppyacc.hpp>
   
     static int check_keyword(const char* name);
     int yyerror(char * msg);
  
  
  
  1.4       +1 -1      ws-axis/c/src/wcg/cpp.y
  
  Index: cpp.y
  ===================================================================
  RCS file: /home/cvs/ws-axis/c/src/wcg/cpp.y,v
  retrieving revision 1.3
  retrieving revision 1.4
  diff -u -r1.3 -r1.4
  --- cpp.y	2 Sep 2003 12:03:50 -0000	1.3
  +++ cpp.y	20 Oct 2003 03:27:33 -0000	1.4
  @@ -1,5 +1,5 @@
   %{
  -   #include "actions.h"
  +   #include <axis/wcg/actions.h>
      #include <iostream>
   
      extern int yyerror(char *);
  
  
  
  1.7       +2 -2      ws-axis/c/src/wcg/cpplex.cpp
  
  Index: cpplex.cpp
  ===================================================================
  RCS file: /home/cvs/ws-axis/c/src/wcg/cpplex.cpp,v
  retrieving revision 1.6
  retrieving revision 1.7
  diff -u -r1.6 -r1.7
  --- cpplex.cpp	15 Oct 2003 06:11:29 -0000	1.6
  +++ cpplex.cpp	20 Oct 2003 03:27:33 -0000	1.7
  @@ -565,7 +565,7 @@
     
     using namespace std;
   
  -  #include "cppyacc.hpp"
  +  #include <axis/wcg/cppyacc.hpp>
   
     static int check_keyword(const char* name);
     int yyerror(char * msg);
  
  
  
  1.6       +1 -1      ws-axis/c/src/wcg/cppyacc.cpp
  
  Index: cppyacc.cpp
  ===================================================================
  RCS file: /home/cvs/ws-axis/c/src/wcg/cppyacc.cpp,v
  retrieving revision 1.5
  retrieving revision 1.6
  diff -u -r1.5 -r1.6
  --- cppyacc.cpp	2 Sep 2003 12:03:50 -0000	1.5
  +++ cppyacc.cpp	20 Oct 2003 03:27:33 -0000	1.6
  @@ -131,7 +131,7 @@
   
   #line 1 "cpp.y"
   
  -   #include "actions.h"
  +   #include <axis/wcg/actions.h>
      #include <iostream>
   
      extern int yyerror(char *);