aseprite/src/app/launcher.h
2016-08-29 13:08:21 -03:00

24 lines
482 B
C++

// Aseprite
// Copyright (C) 2001-2015 David Capello
//
// This program is distributed under the terms of
// the End-User License Agreement for Aseprite.
#ifndef APP_LAUNCHER_H_INCLUDED
#define APP_LAUNCHER_H_INCLUDED
#pragma once
#include <string>
namespace app {
namespace launcher {
void open_url(const std::string& url);
void open_file(const std::string& file);
void open_folder(const std::string& file);
} // namespace launcher
} // namespace app
#endif