Skip to content
Snippets Groups Projects
Commit 9312aa42 authored by Schrödter, Tobias's avatar Schrödter, Tobias Committed by Schrödter, Tobias
Browse files

Add missing include guard

parent 571406bf
No related branches found
No related tags found
1 merge request!93Add missing include guard
Pipeline #33136 passed
...@@ -18,6 +18,9 @@ ...@@ -18,6 +18,9 @@
* along with this program. If not, see <https://cdwww.gnu.org/licenses/>. * along with this program. If not, see <https://cdwww.gnu.org/licenses/>.
*/ */
#ifndef IO_H
#define IO_H
#include <variant> #include <variant>
#include <unordered_map> #include <unordered_map>
#include <string> #include <string>
...@@ -31,3 +34,5 @@ namespace IO ...@@ -31,3 +34,5 @@ namespace IO
std::variant<std::unordered_map<int, int>, std::string> std::variant<std::unordered_map<int, int>, std::string>
readMarkerIDFile(const QString& markerFileName); readMarkerIDFile(const QString& markerFileName);
} }
#endif
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment