postup_commands.hpp 331 B

123456789101112131415161718
  1. #ifndef POSTUP_COMMANDS_HPP
  2. #define POSTUP_COMMANDS_HPP
  3. #include <boost/log/trivial.hpp>
  4. #include <boost/process.hpp>
  5. class PostupCommands
  6. {
  7. public:
  8. void add_postup_command(const std::string& command);
  9. void execute_commands() const;
  10. private:
  11. std::vector<std::string> _postup_commands;
  12. };
  13. #endif