Index: source/test/intltest/simplethread.h |
diff --git a/source/test/intltest/simplethread.h b/source/test/intltest/simplethread.h |
deleted file mode 100644 |
index 3f42485bf0b51cafd92ea09ac2c47ec40d674483..0000000000000000000000000000000000000000 |
--- a/source/test/intltest/simplethread.h |
+++ /dev/null |
@@ -1,27 +0,0 @@ |
-/******************************************************************** |
- * COPYRIGHT: |
- * Copyright (c) 1997-2015, International Business Machines Corporation and |
- * others. All Rights Reserved. |
- ********************************************************************/ |
- |
-#ifndef SIMPLETHREAD_H |
-#define SIMPLETHREAD_H |
- |
-#include "mutex.h" |
- |
-class U_EXPORT SimpleThread |
-{ |
- public: |
- SimpleThread(); |
- virtual ~SimpleThread(); |
- int32_t start(void); // start the thread. Return 0 if successfull. |
- void join(); // A thread must be joined before deleting its SimpleThread. |
- |
- virtual void run(void) = 0; // Override this to provide the code to run |
- // in the thread. |
- private: |
- void *fImplementation; |
-}; |
- |
-#endif |
- |