AWS SDK for C++
AWS SDK for C++
Loading...
Searching...
No Matches
GetTheLights.h
Go to the documentation of this file.
1
6#pragma once
7
10#include <functional>
11#include <atomic>
12
13namespace Aws
14{
15 namespace Utils
16 {
26 {
27 public:
29 void EnterRoom(std::function<void()>&&);
30 void LeaveRoom(std::function<void()>&&);
31 private:
32 std::atomic<int> m_value;
33 };
34 }
35}
#define AWS_CORE_API
Definition: Core_EXPORTS.h:26
void EnterRoom(std::function< void()> &&)
void LeaveRoom(std::function< void()> &&)