You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
|
#ifndef _FILEINFO_H
|
|
#define _FILEINFO_H
|
|
|
|
#include <noatun/playlist.h>
|
|
|
|
class fileInfo {
|
|
public:
|
|
fileInfo(const PlaylistItem &);
|
|
~fileInfo();
|
|
|
|
unsigned int bps();
|
|
unsigned int KHz();
|
|
unsigned int channelCount();
|
|
|
|
private:
|
|
int _KHz;
|
|
int _bps;
|
|
int _channelCount;
|
|
};
|
|
|
|
#endif
|