// ********************************************************************** // // Copyright (c) 2000 // Object Oriented Concepts, Inc. // Billerica, MA, USA // // All Rights Reserved // // ********************************************************************** #ifndef JTC_RUNNABLE_H #define JTC_RUNNABLE_H class JTCRunnable : public virtual JTCRefCount { public: virtual void run() = 0; }; #endif