summaryrefslogtreecommitdiffstats
path: root/noatun/modules/winskin/fileInfo.h
blob: 203af087954b67e86d09092e1b32021bd087097e (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
#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