Overte C++ Documentation
LocalFileAccessGate.h
1 //
2 // Created by Bradley Austin Davis on 2019/09/05
3 // Copyright 2013-2019 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 
9 #pragma once
10 #ifndef hifi_LocalFileAccessGate_h
11 #define hifi_LocalFileAccessGate_h
12 
13 namespace hifi { namespace scripting {
14 
15 void setLocalAccessSafeThread(bool safe = true);
16 
17 bool isLocalAccessSafeThread();
18 
19 }} // namespace hifi::scripting
20 
21 #endif