3e25dd77b5
Updating required flags for uploading a song with metadata
32 lines
451 B
C++
32 lines
451 B
C++
#ifndef CONVERSIONS_H_
|
|
#define CONVERSIONS_H_
|
|
|
|
#include<memory>
|
|
#include<string>
|
|
|
|
namespace Utilities
|
|
{
|
|
class Conversions
|
|
{
|
|
public:
|
|
Conversions();
|
|
|
|
|
|
static void toLowerChar(char &c)
|
|
{
|
|
if (std::isalpha(c))
|
|
{
|
|
c = std::tolower(c);
|
|
}
|
|
}
|
|
|
|
void initializeValues();
|
|
|
|
template <typename T>
|
|
void printValue(T);
|
|
private:
|
|
};
|
|
}
|
|
|
|
#endif
|