From 094bed2b351f3df00f0f0944e8b859daddad3344 Mon Sep 17 00:00:00 2001 From: rr- Date: Wed, 24 Feb 2016 19:43:11 +0100 Subject: [PATCH] Make Tags just an string<->string map for now --- src/tags.h | 5 +++-- 1 file changed, 3 insertions(+), 2 deletions(-) diff --git a/src/tags.h b/src/tags.h index 56be00b..9e34bed 100644 --- a/src/tags.h +++ b/src/tags.h @@ -1,8 +1,9 @@ #pragma once +#include + namespace opustags { - class Tags { - }; + using Tags = std::map; }