summaryrefslogtreecommitdiff
path: root/tag.h
blob: 83a1f6dc0f0bfd9ed99195acc246520b83704ecf (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
#ifndef TAG_H
#define TAG_H

#include <string>
#include <map>

class Tag {
	public:
		typedef std::map<std::string, std::string> Fields;
		Fields fields;
};

class ID3Tag : public Tag {
	private:
		void tag_add_string(struct id3_tag *id3tag, const char *type, const char *id);

	public:
		ID3Tag(const std::string filename);
};

#endif