Skip to content
GitLab
Projects
Groups
Snippets
Help
Loading...
Help
What's new
7
Help
Support
Community forum
Keyboard shortcuts
?
Submit feedback
Sign in / Register
Toggle navigation
Open sidebar
Chakra
Akabei
Akabei frontend
Commits
094c2302
Commit
094c2302
authored
Apr 04, 2011
by
Lukas Appelhans
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Add new SyncOperation files
parent
44aafcd1
Changes
3
Hide whitespace changes
Inline
Side-by-side
Showing
3 changed files
with
54 additions
and
1 deletion
+54
-1
CMakeLists.txt
CMakeLists.txt
+1
-1
syncoperation.cpp
syncoperation.cpp
+26
-0
syncoperation.h
syncoperation.h
+27
-0
No files found.
CMakeLists.txt
View file @
094c2302
...
...
@@ -15,7 +15,7 @@ include_directories(${QT_INCLUDES}
${
AKABEICLIENT_INCLUDE_DIR
}
${
AKABEICORE_INCLUDE_DIR
}
)
set
(
apm_SRCS apm.cpp queryoperation.cpp main.cpp
)
set
(
apm_SRCS
syncoperation.cpp
apm.cpp queryoperation.cpp main.cpp
)
#qt4_automoc(${guzuta_SRCS})
kde4_add_executable
(
akabei
${
apm_SRCS
}
)
target_link_libraries
(
akabei
${
KDE4_KDEUI_LIBRARY
}
${
KDE4_KIO_LIBRARY
}
${
AKABEICLIENT_LIBRARIES
}
)
syncoperation.cpp
0 → 100644
View file @
094c2302
/* This file is part of the KDE project
Copyright (C) 2010 Lukas Appelhans
This program is free software; you can redistribute it and/or
modify it under the terms of the GNU General Public
License as published by the Free Software Foundation; either
version 2 of the License, or (at your option) any later version.
*/
#include "syncoperation.h"
SyncOperation
::
SyncOperation
(
QObject
*
parent
)
:
QObject
(
parent
)
{
}
SyncOperation
::~
SyncOperation
()
{
}
void
SyncOperation
::
start
(
QList
<
APM
::
Operation
>
operations
,
QMultiHash
<
APM
::
Operation
,
QString
>
options
,
QStringList
args
)
{
}
\ No newline at end of file
syncoperation.h
0 → 100644
View file @
094c2302
/* This file is part of the KDE project
Copyright (C) 2010 Lukas Appelhans
This program is free software; you can redistribute it and/or
modify it under the terms of the GNU General Public
License as published by the Free Software Foundation; either
version 2 of the License, or (at your option) any later version.
*/
#ifndef SYNCOPERATION_H
#define SYNCOPERATION_H
#include <QObject>
#include "apm.h"
class
SyncOperation
:
public
QObject
{
Q_OBJECT
public:
explicit
SyncOperation
(
QObject
*
parent
=
0
);
virtual
~
SyncOperation
();
void
start
(
QList
<
APM
::
Operation
>
operations
,
QMultiHash
<
APM
::
Operation
,
QString
>
options
,
QStringList
args
);
};
#endif // SYNCOPERATION_H
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
.
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment