1 | // LAF Base Library |
2 | // Copyright (c) 2001-2016 David Capello |
3 | // |
4 | // This file is released under the terms of the MIT license. |
5 | // Read LICENSE.txt for more information. |
6 | |
7 | #ifndef BASE_LAUNCHER_H_INCLUDED |
8 | #define BASE_LAUNCHER_H_INCLUDED |
9 | #pragma once |
10 | |
11 | #include <string> |
12 | |
13 | namespace base { |
14 | namespace launcher { |
15 | |
16 | bool open_url(const std::string& url); |
17 | bool open_file(const std::string& file); |
18 | bool open_folder(const std::string& file); |
19 | |
20 | } // namespace launcher |
21 | } // namespace base |
22 | |
23 | #endif |
24 | |