Make Tags just an string<->string map for now

This commit is contained in:
rr-
2016-02-24 19:43:11 +01:00
parent b62ac98ca5
commit 094bed2b35

View File

@ -1,8 +1,9 @@
#pragma once
#include <map>
namespace opustags {
class Tags {
};
using Tags = std::map<std::string, std::string>;
}