~ubuntu-branches/ubuntu/lucid/ktorrent/lucid

« back to all changes in this revision

Viewing changes to libktcore/groups/inactiveuploadsgroup.h

  • Committer: Bazaar Package Importer
  • Author(s): Jonathan Thomas
  • Date: 2009-02-16 18:37:14 UTC
  • mfrom: (1.1.25 upstream) (0.4.1 experimental)
  • Revision ID: james.westby@ubuntu.com-20090216183714-52tf47jrnmk4xkmp
Tags: 3.2+dfsg.1-2ubuntu1
* Merge with Debian, remaining changes: (LP: #296433)
  - Use Kubuntu's kde4.mk
  - Build-depend on libboost-serialization1.35-dev since unversioned -dev is
    in universe
  - Change plasma-applet-ktorrent to plasma-widget-ktorrent since we're
    supposed to call them widgets for the users

Show diffs side-by-side

added added

removed removed

Lines of Context:
1
 
/***************************************************************************
2
 
 *   Copyright (C) 2007 by Ivan Vasić                                                                      *
3
 
 *   ivasic@gmail.com                                                                                                      *
4
 
 *                                                                         *
5
 
 *   This program is free software; you can redistribute it and/or modify  *
6
 
 *   it under the terms of the GNU General Public License as published by  *
7
 
 *   the Free Software Foundation; either version 2 of the License, or     *
8
 
 *   (at your option) any later version.                                   *
9
 
 *                                                                         *
10
 
 *   This program is distributed in the hope that it will be useful,       *
11
 
 *   but WITHOUT ANY WARRANTY; without even the implied warranty of        *
12
 
 *   MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the         *
13
 
 *   GNU General Public License for more details.                          *
14
 
 *                                                                         *
15
 
 *   You should have received a copy of the GNU General Public License     *
16
 
 *   along with this program; if not, write to the                         *
17
 
 *   Free Software Foundation, Inc.,                                       *
18
 
 *   51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA.          *
19
 
 ***************************************************************************/
20
 
#ifndef INACTIVEUPLOADSGROUP_H
21
 
#define INACTIVEUPLOADSGROUP_H
22
 
 
23
 
#include <groups/group.h>
24
 
 
25
 
namespace kt
26
 
{
27
 
        class TorrentInterface;
28
 
 
29
 
        /**
30
 
         * Group for inactive uploads.
31
 
         * @author Ivan Vasic <ivasic@gmail.com>
32
 
        */
33
 
 
34
 
        class InactiveUploadsGroup : public Group
35
 
        {
36
 
 
37
 
                public:
38
 
                        InactiveUploadsGroup();
39
 
                        virtual ~InactiveUploadsGroup();
40
 
                        
41
 
                        virtual bool isMember(TorrentInterface* tor);
42
 
 
43
 
        };
44
 
}
45
 
#endif