#ifndef ASYNC_C_ASYNC_THREAD_HPP #define ASYNC_C_ASYNC_THREAD_HPP #include #include #include class CAsyncObject; class CAsyncQueue; class CAsyncThread : public TSLinkedNode { public: // Member variables SThread thread; CAsyncQueue* queue; CAsyncObject* currentObject; }; #endif