Skip to content

Commit

Permalink
Added header guard.
Browse files Browse the repository at this point in the history
  • Loading branch information
gsrohde committed Apr 11, 2024
1 parent 5c8377d commit 569c411
Showing 1 changed file with 5 additions and 0 deletions.
5 changes: 5 additions & 0 deletions app/include/run.h
Original file line number Diff line number Diff line change
@@ -1,3 +1,6 @@
#ifndef RUN_H
#define RUN_H

/* Standard Library */
#include <memory>
#include <string>
Expand All @@ -11,3 +14,5 @@
int run(int argC, char* argV[]);
std::unique_ptr<Result_xml_document> run(std::vector<std::string> command_line_args);
std::unique_ptr<Result_xml_document> run(Option_parser op);

#endif

0 comments on commit 569c411

Please sign in to comment.