diff options
Diffstat (limited to 'cpp/test/IceUtil/thread/TestBase.h')
-rw-r--r-- | cpp/test/IceUtil/thread/TestBase.h | 88 |
1 files changed, 44 insertions, 44 deletions
diff --git a/cpp/test/IceUtil/thread/TestBase.h b/cpp/test/IceUtil/thread/TestBase.h index 2b381289c43..b1943fdd056 100644 --- a/cpp/test/IceUtil/thread/TestBase.h +++ b/cpp/test/IceUtil/thread/TestBase.h @@ -1,44 +1,44 @@ -// **********************************************************************
-//
-// Copyright (c) 2001
-// MutableRealms, Inc.
-// Huntsville, AL, USA
-//
-// All Rights Reserved
-//
-// **********************************************************************
-
-#ifndef TEST_BASE_H
-#define TEST_BASE_H
-
-#include <IceUtil/Shared.h>
-#include <IceUtil/Handle.h>
-
-class TestFailed
-{
-public:
-
- TestFailed(const std::string&);
-
- const std::string name;
-};
-
-class TestBase : public IceUtil::Shared
-{
-public:
-
- TestBase(const std::string&);
-
- std::string name() const;
- void start();
-
-protected:
-
- virtual void run() = 0;
-
- const std::string _name;
-};
-
-typedef IceUtil::Handle<TestBase> TestBasePtr;
-
-#endif
+// ********************************************************************** +// +// Copyright (c) 2001 +// MutableRealms, Inc. +// Huntsville, AL, USA +// +// All Rights Reserved +// +// ********************************************************************** + +#ifndef TEST_BASE_H +#define TEST_BASE_H + +#include <IceUtil/Shared.h> +#include <IceUtil/Handle.h> + +class TestFailed +{ +public: + + TestFailed(const std::string&); + + const std::string name; +}; + +class TestBase : public IceUtil::Shared +{ +public: + + TestBase(const std::string&); + + std::string name() const; + void start(); + +protected: + + virtual void run() = 0; + + const std::string _name; +}; + +typedef IceUtil::Handle<TestBase> TestBasePtr; + +#endif |