initial commit
This commit is contained in:
commit
4b60ece582
327 changed files with 28286 additions and 0 deletions
28
corax/tools/audioid.h
Normal file
28
corax/tools/audioid.h
Normal 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
|
Loading…
Add table
Add a link
Reference in a new issue