Switch to unified view
a/src/mpdcli.hxx | b/src/mpdcli.hxx | ||
---|---|---|---|
... |
... |
||
40 | std::string album; |
40 | std::string album; |
41 | std::string title; |
41 | std::string title; |
42 | std::string tracknum; |
42 | std::string tracknum; |
43 | std::string genre; |
43 | std::string genre; |
44 | unsigned int duration_secs; |
44 | unsigned int duration_secs; |
45 | unsigned int mpdid;
|
45 | int mpdid; |
46 | std::string dump() { |
||
47 | return std::string("Uri [") + uri + "] Artist [" + artist + "] Album [" |
||
48 | + album + "] Title [" + title + "] Tno [" + tracknum + "]"; |
||
49 | } |
||
46 | }; |
50 | }; |
47 | 51 | ||
48 | class MpdStatus { |
52 | class MpdStatus { |
49 | public: |
53 | public: |
50 | MpdStatus() : trackcounter(0), detailscounter(0) {} |
54 | MpdStatus() : trackcounter(0), detailscounter(0) {} |