initial commit

This commit is contained in:
Blue 2018-08-05 00:46:25 +03:00 committed by Юрий Губич
commit 4b60ece582
327 changed files with 28286 additions and 0 deletions

28
corax/tools/audioid.h Normal file
View file

@ -0,0 +1,28 @@
#ifndef AUDIOID_H
#define AUDIOID_H
/**
* @todo write docs
*/
#include <wType/string.h>
class AudioId
{
public:
AudioId(const W::String& p_artist, const W::String& p_album, const W::String& p_name);
AudioId(const AudioId& other);
bool operator==(const AudioId& other) const;
bool operator!=(const AudioId& other) const;
bool operator<(const AudioId& other) const;
bool operator>(const AudioId& other) const;
bool operator<=(const AudioId& other) const;
bool operator>=(const AudioId& other) const;
const W::String artist;
const W::String album;
const W::String name;
};
#endif // AUDIOID_H