~ubuntu-branches/ubuntu/maverick/bluedevil/maverick-proposed

« back to all changes in this revision

Viewing changes to src/kio/obextest/obextest.h

  • Committer: Bazaar Package Importer
  • Author(s): Mark Purcell
  • Date: 2010-08-07 09:04:19 UTC
  • Revision ID: james.westby@ubuntu.com-20100807090419-68k54ucso2htcf5z
Tags: upstream-1.0~rc2
ImportĀ upstreamĀ versionĀ 1.0~rc2

Show diffs side-by-side

added added

removed removed

Lines of Context:
 
1
/***************************************************************************
 
2
 *   This file is part of the KDE project                                  *
 
3
 *                                                                         *
 
4
 *   Copyright (C) 2010 Alejandro Fiestas Olivares <alex@ufocoders.com>    *
 
5
 *   Copyright (C) 2010 UFO Coders <info@ufocoders.com>                    *
 
6
 *                                                                         *
 
7
 *   This program is free software; you can redistribute it and/or modify  *
 
8
 *   it under the terms of the GNU General Public License as published by  *
 
9
 *   the Free Software Foundation; either version 2 of the License, or     *
 
10
 *   (at your option) any later version.                                   *
 
11
 *                                                                         *
 
12
 *   This program is distributed in the hope that it will be useful,       *
 
13
 *   but WITHOUT ANY WARRANTY; without even the implied warranty of        *
 
14
 *   MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the         *
 
15
 *   GNU General Public License for more details.                          *
 
16
 *                                                                         *
 
17
 *   You should have received a copy of the GNU General Public License     *
 
18
 *   along with this program; if not, write to the                         *
 
19
 *   Free Software Foundation, Inc.,                                       *
 
20
 *   51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA            *
 
21
 ***************************************************************************/
 
22
 
 
23
#ifndef OBEXTEST_H
 
24
#define OBEXTEST_H
 
25
 
 
26
#include <QObject>
 
27
 
 
28
#include "obexftpmanager.h"
 
29
#include "obexftpsession.h"
 
30
 
 
31
class ObexTest : public QObject
 
32
{
 
33
Q_OBJECT
 
34
public:
 
35
    ObexTest(QObject* parent = 0);
 
36
 
 
37
private:
 
38
    org::openobex::Manager      *m_manager;
 
39
    org::openobex::Session      *m_session;
 
40
};
 
41
 
 
42
#endif // OBEXTEST_H