Skip to content
Snippets Groups Projects
Commit 67d0056e authored by Schrödter, Tobias's avatar Schrödter, Tobias
Browse files

Merge branch '153-include-guard-missing-io' into 'master'

Add missing include guard

Closes #153

See merge request !93
parents 571406bf 9312aa42
No related branches found
No related tags found
1 merge request!93Add missing include guard
Pipeline #33142 passed
......@@ -18,6 +18,9 @@
* along with this program. If not, see <https://cdwww.gnu.org/licenses/>.
*/
#ifndef IO_H
#define IO_H
#include <variant>
#include <unordered_map>
#include <string>
......@@ -31,3 +34,5 @@ namespace IO
std::variant<std::unordered_map<int, int>, std::string>
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