You've already forked linuxdeploy
mirror of
https://github.com/encounter/linuxdeploy.git
synced 2026-07-10 12:18:44 -07:00
e9bbbc80f4
Apparently fixes all buffer-related crashes, but there's a few minor bugs left. CC #143
20 lines
435 B
C++
20 lines
435 B
C++
#pragma once
|
|
|
|
// library headers
|
|
#include <boost/filesystem/path.hpp>
|
|
|
|
namespace linuxdeploy {
|
|
namespace plugin {
|
|
class plugin_process_handler {
|
|
private:
|
|
std::string name_;
|
|
boost::filesystem::path path_;
|
|
|
|
public:
|
|
plugin_process_handler(std::string name, boost::filesystem::path path);
|
|
|
|
int run(const boost::filesystem::path& appDir) const;
|
|
};
|
|
}
|
|
}
|