FLImaging 6.7.1.3
ThreadUtilities.h
1#pragma once
2
10
11#include "FLBase.h"
12
14namespace FLImaging
15{
17 namespace Base
18 {
19 class CFLData;
20
28 class FL_EXPORT CThreadUtilities : public CFLBase
29 {
30 protected:
31 CThreadUtilities();
32
33 public:
34
44 static void Sleep(int32_t i32DurationMillisecond);
45
53 static void Switch();
54
55
56 DeclareGetClassType();
57 };
58 }
59}
60
CFLBase()
Default constructor.
Data class.
Definition FLData.h:30
static void Switch()
Function to switch thread context.
static void Sleep(int32_t i32DurationMillisecond)
A function that switches the thread context and disables the CPU for a certain amount of time.
Definition AESCryptography.h:18