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 2003/07/01 06:51:51 UTC

cvs commit: xml-axis/c/src/common Handler.h

damitha     2003/06/30 21:51:51

  Added:       c/src/common Handler.h
  Log:
  
  
  Revision  Changes    Path
  1.1                  xml-axis/c/src/common/Handler.h
  
  Index: Handler.h
  ===================================================================
  #if !defined(__HANDLER_INCLUDED__)
  #define __HANDLER_INCLUDED__
  
  #include "BasicHandler.h"
  
  class Handler : public BasicHandler
  {
  public:
    Handler(){};
  	virtual ~Handler(){};
    virtual string GetOption(string sArg)=0;
    virtual void SetOption(string sOption, string Value)=0;
    virtual void SetOptionList(map<string, string>* OptionList)=0;
  
  protected:
  map<string, string>* m_Option;
  };
  
  #endif //__HANDLER_INCLUDED__