1 | // Aseprite |
2 | // Copyright (C) 2001-2015 David Capello |
3 | // |
4 | // This program is distributed under the terms of |
5 | // the End-User License Agreement for Aseprite. |
6 | |
7 | #ifndef APP_LAUNCHER_H_INCLUDED |
8 | #define APP_LAUNCHER_H_INCLUDED |
9 | #pragma once |
10 | |
11 | #include <string> |
12 | |
13 | namespace app { |
14 | namespace launcher { |
15 | |
16 | void open_url(const std::string& url); |
17 | void open_file(const std::string& file); |
18 | void open_folder(const std::string& file); |
19 | |
20 | } // namespace launcher |
21 | } // namespace app |
22 | |
23 | #endif |
24 | |