#ifndef MAIN_COMMANDS_HPP #define MAIN_COMMANDS_HPP #include #include namespace dropshell { namespace main_commands { int init(const std::vector &args); int restore(const std::vector &args, bool silent=false); int backup(const std::vector &args, bool silent=false); } // namespace main_commands } // namespace dropshell #endif