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

« back to all changes in this revision

Viewing changes to plugins/webinterface/phpcodegenerator.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) 2006 by Diego R. Brogna and Joris Guisson               *
3
 
 *   dierbro@gmail.com                                                     *
4
 
 *   joris.guisson@gmail.com                                               *
5
 
 *                                                                         *
6
 
 *   This program is free software; you can redistribute it and/or modify  *
7
 
 *   it under the terms of the GNU General Public License as published by  *
8
 
 *   the Free Software Foundation; either version 2 of the License, or     *
9
 
 *   (at your option) any later version.                                   *
10
 
 *                                                                         *
11
 
 *   This program is distributed in the hope that it will be useful,       *
12
 
 *   but WITHOUT ANY WARRANTY; without even the implied warranty of        *
13
 
 *   MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the         *
14
 
 *   GNU General Public License for more details.                          *
15
 
 *                                                                         *
16
 
 *   You should have received a copy of the GNU General Public License     *
17
 
 *   along with this program; if not, write to the                         *
18
 
 *   Free Software Foundation, Inc.,                                       *
19
 
 *   51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA.          *
20
 
 ***************************************************************************/
21
 
#ifndef KT_PHPCODEGENERATOR_HH
22
 
#define KT_PHPCODEGENERATOR_HH
23
 
 
24
 
#include <QString>
25
 
 
26
 
class QTextStream;
27
 
 
28
 
namespace kt
29
 
{
30
 
        class CoreInterface;
31
 
        
32
 
        /**
33
 
         * Class to generate PHP code containing all information about the current torrents
34
 
         */
35
 
        class PhpCodeGenerator
36
 
        {
37
 
        public:
38
 
                PhpCodeGenerator(CoreInterface *c);
39
 
                virtual ~PhpCodeGenerator();
40
 
                
41
 
                void downloadStatus(QTextStream & out);
42
 
                void globalInfo(QTextStream & out);
43
 
        private:
44
 
                CoreInterface *core;
45
 
        };
46
 
}
47
 
 
48
 
#endif