diff options
author | bloodstalker <thabogre@gmail.com> | 2017-05-02 20:56:14 +0000 |
---|---|---|
committer | bloodstalker <thabogre@gmail.com> | 2017-05-02 20:56:14 +0000 |
commit | 2ad6ee73d81a1d238f247e6b5c1e1b93e299f95f (patch) | |
tree | da35f1f3b0418691b147b78aa96ff61719aa46e3 | |
parent | hijack main now works (diff) | |
download | mutator-2ad6ee73d81a1d238f247e6b5c1e1b93e299f95f.tar.gz mutator-2ad6ee73d81a1d238f247e6b5c1e1b93e299f95f.zip |
daemonize?
-rw-r--r-- | bruiser/bruiser.h | 7 |
1 files changed, 5 insertions, 2 deletions
diff --git a/bruiser/bruiser.h b/bruiser/bruiser.h index a001f62..7d32da9 100644 --- a/bruiser/bruiser.h +++ b/bruiser/bruiser.h @@ -186,10 +186,13 @@ class ShellHistory class Daemonize { public: - Daemonize () {} + Daemonize (std::string __exe, std::string __opts) : Exe(__exe), Opts(__opts) {} + - private: + private: + std::string Exe; + std::string Opts; }; /**********************************************************************************************************************/ } // end of namespace bruiser |