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/07/21 16:10:46 UTC

cvs commit: xml-axis/c/src/server/samples/webservice WebService.h

susantha    2003/07/21 07:10:46

  Modified:    c/src/server/samples/webservice WebService.h
  Log:
  Introduced Interfaces to AccessBean, ArrayBean and Param classes for
  1. Making wrapper class API simple
  2. Avoid code duplication in Webservice DLLs (Web service DLLs having its own copy of linked code)
  
  Revision  Changes    Path
  1.2       +2 -2      xml-axis/c/src/server/samples/webservice/WebService.h
  
  Index: WebService.h
  ===================================================================
  RCS file: /home/cvs/xml-axis/c/src/server/samples/webservice/WebService.h,v
  retrieving revision 1.1
  retrieving revision 1.2
  diff -u -r1.1 -r1.2
  --- WebService.h	25 Jun 2003 04:53:46 -0000	1.1
  +++ WebService.h	21 Jul 2003 14:10:46 -0000	1.2
  @@ -72,12 +72,12 @@
   #pragma once
   #endif // _MSC_VER > 1000
   
  -#include "../../../common/AccessBean.h"
  +#include "../../../common/IAccessBean.h"
   #include <string>
   
   using namespace std;
   
  -class Point : public AccessBean
  +class Point : public IAccessBean
   {
   public:
   	int x;