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 da...@apache.org on 2004/04/09 08:15:42 UTC

cvs commit: ws-axis/c/src/engine/client ClientAxisEngine.h

damitha     2004/04/08 23:15:42

  Modified:    c/src/engine/client ClientAxisEngine.h
  Log:
  replaced indent tabs with spaces; added apache 2 licence.
  
  Revision  Changes    Path
  1.5       +38 -25    ws-axis/c/src/engine/client/ClientAxisEngine.h
  
  Index: ClientAxisEngine.h
  ===================================================================
  RCS file: /home/cvs/ws-axis/c/src/engine/client/ClientAxisEngine.h,v
  retrieving revision 1.4
  retrieving revision 1.5
  diff -u -r1.4 -r1.5
  --- ClientAxisEngine.h	31 Mar 2004 15:05:41 -0000	1.4
  +++ ClientAxisEngine.h	9 Apr 2004 06:15:42 -0000	1.5
  @@ -1,31 +1,44 @@
  -// ClientAxisEngine.h: interface for the ClientAxisEngine class.
  -//
  -//////////////////////////////////////////////////////////////////////
  +/* -*- C++ -*- */
  +/*
  + *   Copyright 2003-2004 The Apache Software Foundation.
  + *
  + *   Licensed under the Apache License, Version 2.0 (the "License");
  + *   you may not use this file except in compliance with the License.
  + *   You may obtain a copy of the License at
  + *
  + *       http://www.apache.org/licenses/LICENSE-2.0
  + *
  + *   Unless required by applicable law or agreed to in writing, software
  + *   distributed under the License is distributed on an "AS IS" BASIS,
  + *   WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
  + *   See the License for the specific language governing permissions and
  + *   limitations under the License.
  + */
   
  -#if !defined(AFX_CLIENTAXISENGINE_H__4DA1EBC5_C7D8_4747_8069_C3E8B6A2E929__INCLUDED_)
  -#define AFX_CLIENTAXISENGINE_H__4DA1EBC5_C7D8_4747_8069_C3E8B6A2E929__INCLUDED_
  +#if !defined(AXIS_CLIENTAXISENGINE_H__INCLUDED_)
  +#define AXIS_CLIENTAXISENGINE_H__INCLUDED_
   
   #include <axis/server/AxisEngine.h>
  -/**
  -    @class ClientAxisEngine
  -    @brief
  -
  -
  -    @author Susantha Kumara (skumara@virtusa.com)
  -*/
  -class ClientAxisEngine : public AxisEngine  
  +/*
  + *   @class ClientAxisEngine
  + *   @brief
  + *
  + *
  + *   @author Susantha Kumara (skumara@virtusa.com)
  + */
  +class ClientAxisEngine:public AxisEngine
   {
  -public:
  -	MessageData* GetMessageData();
  -	ClientAxisEngine();
  -	virtual ~ClientAxisEngine();
  -	virtual int Process(Ax_soapstream* pSoap);
  -protected:
  -	virtual int Invoke(MessageData* pMsg);
  -	virtual void OnFault(MessageData* pMsg);
  -private:
  -	Ax_soapstream* m_pSoap;
  -	char* get_service_name(const char* pch_uri_path);
  +    public:
  +        MessageData* GetMessageData ();
  +        ClientAxisEngine ();
  +        virtual ~ ClientAxisEngine ();
  +        virtual int Process (Ax_soapstream* pSoap);
  +    protected:
  +        virtual int Invoke (MessageData* pMsg);
  +        virtual void OnFault (MessageData* pMsg);
  +    private:
  +        Ax_soapstream* m_pSoap;
  +        char* get_service_name (const char* pch_uri_path);
   };
   
  -#endif // !defined(AFX_CLIENTAXISENGINE_H__4DA1EBC5_C7D8_4747_8069_C3E8B6A2E929__INCLUDED_)
  +#endif