Updates
Updating required flags for uploading a song with metadata
This commit is contained in:
@@ -11,6 +11,15 @@ namespace Utilities
|
||||
public:
|
||||
Conversions();
|
||||
|
||||
|
||||
static void toLowerChar(char &c)
|
||||
{
|
||||
if (std::isalpha(c))
|
||||
{
|
||||
c = std::tolower(c);
|
||||
}
|
||||
}
|
||||
|
||||
void initializeValues();
|
||||
|
||||
template <typename T>
|
||||
|
||||
Reference in New Issue
Block a user