18 lines
325 B
C++
18 lines
325 B
C++
#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_;
|
|
};
|