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.
22 lines
310 B
22 lines
310 B
15 years ago
|
#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
|