~ubuntu-branches/ubuntu/natty/kdemultimedia/natty-proposed

« back to all changes in this revision

Viewing changes to kscd/mbmanager.h

  • Committer: Bazaar Package Importer
  • Author(s): Debian Qt/KDE Maintainers
  • Date: 2011-05-26 02:41:36 UTC
  • mfrom: (0.2.3 upstream)
  • mto: This revision was merged to the branch mainline in revision 108.
  • Revision ID: james.westby@ubuntu.com-20110526024136-jjwsigfy402jhupm
Tags: upstream-4.6.3
ImportĀ upstreamĀ versionĀ 4.6.3

Show diffs side-by-side

added added

removed removed

Lines of Context:
34
34
#ifndef MBMANAGER_H
35
35
#define MBMANAGER_H
36
36
 
37
 
// // MusicBrainz
38
 
#include <stdio.h>
39
 
#include <stdlib.h>
40
 
#include "musicbrainz/musicbrainz.h"
41
 
#include "musicbrainz/mb_c.h"
42
 
#include "musicbrainz/browser.h"
43
 
 
44
37
// KDE includes
45
38
#include <kdebug.h>
46
39
#include <klocalizedstring.h>
59
52
{
60
53
        QString Title;
61
54
        QString Artist;
62
 
        QString Duration;
 
55
        int Duration; // in milliseconds
63
56
};
64
57
 
65
58
class MBManager : public QObject
70
63
        DiscInfo m_discInfo;                            /// Contains the album's information
71
64
        QList <MBTrackInfo> m_trackList;        /// List of tracks information
72
65
 
73
 
        char * m_browser;
74
 
 
75
66
        bool m_validInfo;                                       /// Tells whether the lookup query succeeded
76
67
 
77
68
public: