05bd44a354
- Replace `Tag` class with utility helpers for hashing and file type parsing - Change `Track.artwork` from `std::string` to `TagLib::VariantMap` - Add `importArtwork`, rename `importFolder` to `scanFolder` - Add `scanLibrary`, `updateLibrary`, `editMetadata`, and `seek` methods to `Player` hierarchy - Remove obsolete `Tag.h`/`Tag.cpp` files
12 lines
193 B
C++
12 lines
193 B
C++
#pragma once
|
|
|
|
#include "Containers.h"
|
|
#include <cstdint>
|
|
|
|
namespace utility {
|
|
|
|
uint64_t hashString( const std::string& s );
|
|
std::string parseFiletype( const std::string& filePath );
|
|
|
|
}
|