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

« back to all changes in this revision

Viewing changes to plugins/nowlistening/nlxmms.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
    nlxmms.h
 
3
 
 
4
    Kopete Now Listening To plugin
 
5
 
 
6
    Copyright (c) 2002 by Will Stephenson <will@stevello.free-online.co.uk>
 
7
 
 
8
    Kopete    (c) 2002 by the Kopete developers  <kopete-devel@kde.org>
 
9
        
 
10
        Purpose: 
 
11
        This class abstracts the interface to the X Multimedia System (xmms) by
 
12
        implementing NLMediaPlayer
 
13
 
 
14
    *************************************************************************
 
15
    *                                                                       *
 
16
    * This program is free software; you can redistribute it and/or modify  *
 
17
    * it under the terms of the GNU General Public License as published by  *
 
18
    * the Free Software Foundation; either version 2 of the License, or     *
 
19
    * (at your option) any later version.                                   *
 
20
    *                                                                       *
 
21
    *************************************************************************
 
22
*/
 
23
#include "config-kopete.h"
 
24
#ifndef NLXMMS_H
 
25
#define NLXMMS_H
 
26
 
 
27
#ifdef HAVE_XMMS
 
28
 
 
29
class NLXmms : public NLMediaPlayer
 
30
{
 
31
        public:
 
32
                NLXmms();
 
33
                virtual void update();
 
34
};
 
35
 
 
36
#endif
 
37
 
 
38
#endif
 
39
 
 
40
// vim: set noet ts=4 sts=4 sw=4: