mirror of
https://github.com/danbulant/Cosmos
synced 2026-05-19 04:18:43 +00:00
20 lines
No EOL
235 B
C
20 lines
No EOL
235 B
C
#pragma once
|
|
|
|
BEGIN_NAMESPACE
|
|
|
|
ref class WorkerThreadObject
|
|
{
|
|
public:
|
|
#ifdef _DEBUG
|
|
const DWORD ThreadId;
|
|
#endif
|
|
|
|
WorkerThreadObject()
|
|
#ifdef _DEBUG
|
|
: ThreadId(GetCurrentThreadId())
|
|
#endif
|
|
{
|
|
}
|
|
};
|
|
|
|
END_NAMESPACE |