~ubuntu-branches/ubuntu/saucy/kactivities/saucy-proposed

« back to all changes in this revision

Viewing changes to service/jobs/encryption/private/Encfs_p.h

  • Committer: Package Import Robot
  • Author(s): Scott Kitterman, Jonathan Riddell, Scott Kitterman
  • Date: 2012-11-20 13:47:27 UTC
  • mfrom: (1.1.13)
  • Revision ID: package-import@ubuntu.com-20121120134727-vqzk04slqjoay3de
Tags: 4:4.9.80-0ubuntu1
[ Jonathan Riddell ]
* New upstream beta release

[ Scott Kitterman ]
* Add new libkactivities-models1 library package (debian/control, .install,
  and .symbols)
* Add nepomuk-core-dev to build-depends
* Wildcard libkactivities6.install so that soversion changes don't cause
  build failures
* Update libkactivities6.symbols
* Update libkactivities-dev.install for new files for libkactivies-models
* Add new files to libkactivities-bin.install, including Activities kcm

Show diffs side-by-side

added added

removed removed

Lines of Context:
1
 
/*
2
 
 *   Copyright (C) 2012 Ivan Cukic <ivan.cukic(at)kde.org>
3
 
 *   Copyright (C) 2012 Lamarque V. Souza <lamarque@kde.org>
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 version 2,
7
 
 *   or (at your option) any later version, as published by the Free
8
 
 *   Software Foundation
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
16
 
 *   License 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
 
 
21
 
#ifndef JOBS_ENCRYPTION_ENCFS_P_H
22
 
#define JOBS_ENCRYPTION_ENCFS_P_H
23
 
 
24
 
#include "Encfs.h"
25
 
 
26
 
#include <QSet>
27
 
#include <QProcess>
28
 
 
29
 
namespace Jobs {
30
 
namespace Encryption {
31
 
namespace Private {
32
 
 
33
 
class Encfs::Private: public QObject
34
 
{
35
 
Q_OBJECT
36
 
public:
37
 
    Private(Encfs * parent);
38
 
 
39
 
    QSet < QString > mounts;
40
 
 
41
 
    QProcess * startEncfs(const QString & what, const QString & mountPoint, const QString & password);
42
 
 
43
 
    Encfs * const q;
44
 
};
45
 
 
46
 
} // namespace Private
47
 
} // namespace Encryption
48
 
} // namespace Jobs
49
 
 
50
 
#endif // JOBS_ENCRYPTION_ENCFS_P_H