1 #ifndef TOOLS_SNAPSHOT_SNAPSHOT_BUILDER_H_ 2 #define TOOLS_SNAPSHOT_SNAPSHOT_BUILDER_H_ 3 4 #include <string> 5 #include <vector> 6 7 namespace node { 8 class SnapshotBuilder { 9 public: 10 static std::string Generate(const std::vector<std::string> args, 11 const std::vector<std::string> exec_args); 12 }; 13 } // namespace node 14 15 #endif // TOOLS_SNAPSHOT_SNAPSHOT_BUILDER_H_ 16