nx_server_plugin_sdk  1.0
Server Plugin SDK
apple_utils.h
1 // Copyright 2018-present Network Optix, Inc. Licensed under MPL 2.0: www.mozilla.org/MPL/2.0/
2 
3 #include <vector>
4 #include <string>
5 
6 namespace nx {
7 namespace kit {
8 namespace apple_utils {
9 
10 std::vector<std::string> getProcessCmdLineArgs();
11 const std::string getPathToExecutable();
12 
13 // Get a path to NSApplicationSupportDirectory.
14 std::string getAppDataLocation();
15 
16 } // namespace apple_utils
17 } // namespace kit
18 } // namespace nx
Definition: apple_utils.h:6