Overte C++ Documentation
oculusMobile/src/ovr/Forward.h
1 //
2 // Created by Bradley Austin Davis on 2018/11/23
3 // Copyright 2013-2018 High Fidelity, Inc.
4 //
5 // Distributed under the Apache License, Version 2.0.
6 // See the accompanying file LICENSE or http://www.apache.org/licenses/LICENSE-2.0.html
7 //
8 #pragma once
9 #include <mutex>
10 #include <functional>
11 
12 namespace ovr {
13  using Mutex = std::mutex;
14  using Condition = std::condition_variable;
15  using Lock = std::unique_lock<Mutex>;
16  using Task = std::function<void()>;
17 }