summaryrefslogtreecommitdiffstats
path: root/synchronizer
diff options
context:
space:
mode:
authorAaron Seigo <aseigo@kde.org>2014-12-15 20:46:56 +0100
committerAaron Seigo <aseigo@kde.org>2014-12-15 20:46:56 +0100
commite2ddbe9af656cef7a4384b5f9f5e9b6acec411e9 (patch)
treeac8a2513f8f01540ccb89fb2d3b00cc21ffdc14e /synchronizer
parentd7f1c86fd5d58e2fa9c7217c387648b1aca0f529 (diff)
downloadsink-e2ddbe9af656cef7a4384b5f9f5e9b6acec411e9.tar.gz
sink-e2ddbe9af656cef7a4384b5f9f5e9b6acec411e9.zip
licenses
Diffstat (limited to 'synchronizer')
-rw-r--r--synchronizer/listener.cpp19
-rw-r--r--synchronizer/listener.h19
-rw-r--r--synchronizer/main.cpp18
3 files changed, 56 insertions, 0 deletions
diff --git a/synchronizer/listener.cpp b/synchronizer/listener.cpp
index 7905038..1d20c4d 100644
--- a/synchronizer/listener.cpp
+++ b/synchronizer/listener.cpp
@@ -1,3 +1,22 @@
1/*
2 * Copyright (C) 2014 Aaron Seigo <aseigo@kde.org>
3 *
4 * This program is free software; you can redistribute it and/or modify
5 * it under the terms of the GNU General Public License as published by
6 * the Free Software Foundation; either version 2 of the License, or
7 * (at your option) any later version.
8 *
9 * This program is distributed in the hope that it will be useful,
10 * but WITHOUT ANY WARRANTY; without even the implied warranty of
11 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
12 * GNU General Public License for more details.
13 *
14 * You should have received a copy of the GNU General Public License
15 * along with this program; if not, write to the
16 * Free Software Foundation, Inc.,
17 * 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA.
18 */
19
1#include "listener.h" 20#include "listener.h"
2 21
3#include "common/console.h" 22#include "common/console.h"
diff --git a/synchronizer/listener.h b/synchronizer/listener.h
index dcc3818..b20da7f 100644
--- a/synchronizer/listener.h
+++ b/synchronizer/listener.h
@@ -1,3 +1,22 @@
1/*
2 * Copyright (C) 2014 Aaron Seigo <aseigo@kde.org>
3 *
4 * This program is free software; you can redistribute it and/or modify
5 * it under the terms of the GNU General Public License as published by
6 * the Free Software Foundation; either version 2 of the License, or
7 * (at your option) any later version.
8 *
9 * This program is distributed in the hope that it will be useful,
10 * but WITHOUT ANY WARRANTY; without even the implied warranty of
11 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
12 * GNU General Public License for more details.
13 *
14 * You should have received a copy of the GNU General Public License
15 * along with this program; if not, write to the
16 * Free Software Foundation, Inc.,
17 * 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA.
18 */
19
1#pragma once 20#pragma once
2 21
3#include <QLocalServer> 22#include <QLocalServer>
diff --git a/synchronizer/main.cpp b/synchronizer/main.cpp
index fbb3c00..83a9f28 100644
--- a/synchronizer/main.cpp
+++ b/synchronizer/main.cpp
@@ -1,3 +1,21 @@
1/*
2 * Copyright (C) 2014 Aaron Seigo <aseigo@kde.org>
3 *
4 * This program is free software; you can redistribute it and/or modify
5 * it under the terms of the GNU General Public License as published by
6 * the Free Software Foundation; either version 2 of the License, or
7 * (at your option) any later version.
8 *
9 * This program is distributed in the hope that it will be useful,
10 * but WITHOUT ANY WARRANTY; without even the implied warranty of
11 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
12 * GNU General Public License for more details.
13 *
14 * You should have received a copy of the GNU General Public License
15 * along with this program; if not, write to the
16 * Free Software Foundation, Inc.,
17 * 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA.
18 */
1 19
2#include <QApplication> 20#include <QApplication>
3 21