~mateo-salta/uvolman/uvolman

« back to all changes in this revision

Viewing changes to backend/UVolMan/DBus/DBusRestoreEntryVolume.cpp

  • Committer: Devid Antonio Filoni
  • Date: 2016-07-29 19:40:57 UTC
  • Revision ID: git-v1:cdfff2c72a8eb5247b10da7d60874d8a3f600168
Initial commit

Show diffs side-by-side

added added

removed removed

Lines of Context:
 
1
/*
 
2
 * This file is part of uvolman.dfiloni
 
3
 *
 
4
 * Copyright (C) 2016 Devid Antonio Filoni https://launchpad.net/~d.filoni
 
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 3 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, see <http://www.gnu.org/licenses/>.
 
18
 */
 
19
 
 
20
#include "DBusRestoreEntryVolume.h"
 
21
 
 
22
DBusRestoreEntryVolume::DBusRestoreEntryVolume() {}
 
23
 
 
24
DBusRestoreEntryVolume::DBusRestoreEntryVolume(uint first, uint second)
 
25
    : first(first),
 
26
      second(second)
 
27
{
 
28
}
 
29
 
 
30
uint DBusRestoreEntryVolume::getFirst() const
 
31
{
 
32
    return first;
 
33
}
 
34
 
 
35
uint DBusRestoreEntryVolume::getSecond() const
 
36
{
 
37
    return second;
 
38
}
 
39
 
 
40
QDBusArgument &operator<<(QDBusArgument &argument, const DBusRestoreEntryVolume &result)
 
41
{
 
42
    argument.beginStructure();
 
43
    argument << result.first;
 
44
    argument << result.second;
 
45
    argument.endStructure();
 
46
 
 
47
    return argument;
 
48
}
 
49
 
 
50
const QDBusArgument &operator>>(const QDBusArgument &argument, DBusRestoreEntryVolume &result)
 
51
{
 
52
    argument.beginStructure();
 
53
    argument >> result.first;
 
54
    argument >> result.second;
 
55
    argument.endStructure();
 
56
 
 
57
    return argument;
 
58
}