]> git.saurik.com Git - apple/icu.git/blobdiff - icuSources/test/intltest/tsmthred.h
ICU-6.2.4.tar.gz
[apple/icu.git] / icuSources / test / intltest / tsmthred.h
index 343321bfbc4434153d2ab449807a2e77d6440876..f2f990608f9c062766634c982b6005d437253dab 100644 (file)
@@ -1,6 +1,6 @@
 /********************************************************************
  * COPYRIGHT: 
- * Copyright (c) 1997-2003, International Business Machines Corporation and
+ * Copyright (c) 1997-2004, International Business Machines Corporation and
  * others. All Rights Reserved.
  ********************************************************************/
 
 #include "intltest.h"
 #include "mutex.h"
 
-/*
-    Test multithreading.   Of course we need a thread class first..
-    this wrapper has a ported implementation.
- */
-
-class SimpleThread
-{
-public:
-    SimpleThread();
-    virtual ~SimpleThread();
-    int32_t start(void); // start the thread
-public: // should be private, but then we couldn't be asocial.
-    virtual void run(void) = 0; // Override this to provide some real implementation
-private:
-    void *fImplementation;
-
-public:
-    static void sleep(int32_t millis); // probably shouldn't go here but oh well. 
-};
 
 
 /**
@@ -58,7 +39,7 @@ public:
     void TestThreadedIntl(void);
 #endif
   void TestCollators(void);
-
+  void TestString();
 };
 
 #endif