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/06/27 14:37:11 UTC

cvs commit: xml-axis/c/src/server/samples/libinteropbase BaseTests.h BaseTests.cpp

susantha    2003/06/27 05:37:11

  Added:       c/src/server/samples/libinteropbase BaseTests.h
                        BaseTests.cpp
  Log:
  web services for interop testing
  
  Revision  Changes    Path
  1.1                  xml-axis/c/src/server/samples/libinteropbase/BaseTests.h
  
  Index: BaseTests.h
  ===================================================================
  // BaseTests.h: interface for the BaseTests class.
  //
  //////////////////////////////////////////////////////////////////////
  
  #if !defined(AFX_BASETESTS_H__64DDD7A7_E766_4CF1_AA82_7F5E67A3F25F__INCLUDED_)
  #define AFX_BASETESTS_H__64DDD7A7_E766_4CF1_AA82_7F5E67A3F25F__INCLUDED_
  
  #if _MSC_VER > 1000
  #pragma once
  #endif // _MSC_VER > 1000
  
  class BaseTests  
  {
  public:
  	BaseTests();
  	virtual ~BaseTests();
  
  };
  
  #endif // !defined(AFX_BASETESTS_H__64DDD7A7_E766_4CF1_AA82_7F5E67A3F25F__INCLUDED_)
  
  
  
  1.1                  xml-axis/c/src/server/samples/libinteropbase/BaseTests.cpp
  
  Index: BaseTests.cpp
  ===================================================================
  // BaseTests.cpp: implementation of the BaseTests class.
  //
  //////////////////////////////////////////////////////////////////////
  
  #include "BaseTests.h"
  
  //////////////////////////////////////////////////////////////////////
  // Construction/Destruction
  //////////////////////////////////////////////////////////////////////
  
  BaseTests::BaseTests()
  {
  
  }
  
  BaseTests::~BaseTests()
  {
  
  }