mirror of
https://github.com/audacity/linuxdeploy.git
synced 2026-04-12 21:25:04 -05:00
Improve docs and initialization of containers
This commit is contained in:
@@ -1,3 +1,8 @@
|
||||
// system headers
|
||||
#include <set>
|
||||
#include <string>
|
||||
#include <vector>
|
||||
|
||||
// library headers
|
||||
#include <boost/filesystem.hpp>
|
||||
#include <Magick++.h>
|
||||
@@ -24,13 +29,14 @@ namespace linuxdeploy {
|
||||
class AppDir::PrivateData {
|
||||
public:
|
||||
bf::path appDirPath;
|
||||
|
||||
// store deferred operations
|
||||
// these can be executed by calling excuteDeferredOperations
|
||||
std::map<bf::path, bf::path> copyOperations;
|
||||
std::map<bf::path, std::string> setElfRPathOperations;
|
||||
|
||||
public:
|
||||
PrivateData() {
|
||||
this->copyOperations = {};
|
||||
};
|
||||
PrivateData() : copyOperations(), setElfRPathOperations() {};
|
||||
|
||||
public:
|
||||
// actually copy file
|
||||
|
||||
Reference in New Issue
Block a user