~ubuntu-branches/ubuntu/saucy/kopete/saucy-proposed

« back to all changes in this revision

Viewing changes to plugins/nowlistening/nlmpris.h

  • Committer: Package Import Robot
  • Author(s): Jonathan Riddell
  • Date: 2013-06-21 02:22:39 UTC
  • Revision ID: package-import@ubuntu.com-20130621022239-63l3zc8p0nf26pt6
Tags: upstream-4.10.80
Import upstream version 4.10.80

Show diffs side-by-side

added added

removed removed

Lines of Context:
 
1
/*
 
2
        nlmpris.h
 
3
 
 
4
    Kopete Now Listening To plugin
 
5
 
 
6
 
 
7
    Copyright (c) 2010 by Volker Härtel <cyberbeat@gmx.de>
 
8
 
 
9
    Kopete    (c) 2002,2003,2004 by the Kopete developers  <kopete-devel@kde.org>
 
10
 
 
11
        Purpose:
 
12
        This class abstracts the interface to audacious by
 
13
        implementing NLMediaPlayer
 
14
 
 
15
    *************************************************************************
 
16
    *                                                                       *
 
17
    * This program is free software; you can redistribute it and/or modify  *
 
18
    * it under the terms of the GNU General Public License as published by  *
 
19
    * the Free Software Foundation; either version 2 of the License, or     *
 
20
    * (at your option) any later version.                                   *
 
21
    *                                                                       *
 
22
    *************************************************************************
 
23
*/
 
24
 
 
25
#ifndef NLMPRIS_H
 
26
#define NLMPRIS_H
 
27
 
 
28
#include "nlmediaplayer.h"
 
29
 
 
30
class QDBusInterface;
 
31
 
 
32
class NLmpris : public NLMediaPlayer
 
33
{
 
34
        public:
 
35
                NLmpris();
 
36
                virtual ~NLmpris();
 
37
                virtual void update();
 
38
        private:
 
39
                QDBusInterface *m_client;
 
40
};
 
41
 
 
42
#endif