initial Commit

This commit is contained in:
2026-06-15 22:11:47 +02:00
commit 293756cf1f
13 changed files with 96038 additions and 0 deletions
+17
View File
@@ -0,0 +1,17 @@
#pragma once
#include "Metadata.h"
#include <taglib/tstring.h>
#include <taglib/fileref.h>
class Tag {
public:
void readTag( TagLib::FileName fileName );
Metadata getMetadata() const;
std::string& getFilePath() const;
private:
Metadata metadata_;
std::string filePath_;
};