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 11:07:07 UTC

cvs commit: ws-axis/c/src/engine/server ServerAxisEngine.h

damitha     2004/04/09 02:07:07

  Modified:    c/src/engine/server ServerAxisEngine.h
  Log:
  replaced indent tabs with spaces; added apache 2 licence.
  
  Revision  Changes    Path
  1.2       +37 -24    ws-axis/c/src/engine/server/ServerAxisEngine.h
  
  Index: ServerAxisEngine.h
  ===================================================================
  RCS file: /home/cvs/ws-axis/c/src/engine/server/ServerAxisEngine.h,v
  retrieving revision 1.1
  retrieving revision 1.2
  diff -u -r1.1 -r1.2
  --- ServerAxisEngine.h	25 Mar 2004 16:03:50 -0000	1.1
  +++ ServerAxisEngine.h	9 Apr 2004 09:07:07 -0000	1.2
  @@ -1,30 +1,43 @@
  -// ServerAxisEngine.h: interface for the ServerAxisEngine 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_SERVERAXISENGINE_H__8E421346_17A9_47EF_9003_6DC9C6F7787A__INCLUDED_)
  -#define AFX_SERVERAXISENGINE_H__8E421346_17A9_47EF_9003_6DC9C6F7787A__INCLUDED_
  +#if !defined(AXIS_SERVERAXISENGINE_H__INCLUDED_)
  +#define AXIS_SERVERAXISENGINE_H__INCLUDED_
   
   #include <axis/server/AxisEngine.h>
  -/**
  -    @class ServerAxisEngine
  -    @brief interface for the ServerAxisEngine class.
  -
  -
  -    @author Susantha Kumara (skumara@virtusa.com)
  -*/
  -class ServerAxisEngine : public AxisEngine  
  +/*
  + *  @class ServerAxisEngine
  + *  @brief interface for the ServerAxisEngine class.
  + *
  + *
  + *  @author Susantha Kumara (skumara@virtusa.com)
  + */
  +class ServerAxisEngine:public AxisEngine
   {
  -private:
  -		BasicHandler* m_pWebService;
  -public:
  -	ServerAxisEngine();
  -	virtual ~ServerAxisEngine();
  -public:
  -	int Process(Ax_soapstream* soap);
  -protected:
  -	virtual int Invoke(MessageData* pMsg);
  -	virtual void OnFault(MessageData* pMsg);
  +    private:
  +        BasicHandler* m_pWebService;
  +    public:
  +        ServerAxisEngine ();
  +        virtual ~ ServerAxisEngine ();
  +    public:
  +        int Process (Ax_soapstream* soap);
  +    protected:
  +        virtual int Invoke (MessageData* pMsg);
  +        virtual void OnFault (MessageData* pMsg);
   };
   
  -#endif // !defined(AFX_SERVERAXISENGINE_H__8E421346_17A9_47EF_9003_6DC9C6F7787A__INCLUDED_)
  +#endif