summaryrefslogtreecommitdiffstats
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
parentd7f1c86fd5d58e2fa9c7217c387648b1aca0f529 (diff)
downloadsink-e2ddbe9af656cef7a4384b5f9f5e9b6acec411e9.tar.gz
sink-e2ddbe9af656cef7a4384b5f9f5e9b6acec411e9.zip
licenses
-rw-r--r--client/main.cpp18
-rw-r--r--client/resourceaccess.cpp20
-rw-r--r--client/resourceaccess.h20
-rw-r--r--client/threadboundary.cpp20
-rw-r--r--client/threadboundary.h20
-rw-r--r--dummyresource/facade.cpp19
-rw-r--r--dummyresource/facade.h19
-rw-r--r--synchronizer/listener.cpp19
-rw-r--r--synchronizer/listener.h19
-rw-r--r--synchronizer/main.cpp18
10 files changed, 192 insertions, 0 deletions
diff --git a/client/main.cpp b/client/main.cpp
index 4f86792..77c93d2 100644
--- a/client/main.cpp
+++ b/client/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#include <QCommandLineParser> 21#include <QCommandLineParser>
diff --git a/client/resourceaccess.cpp b/client/resourceaccess.cpp
index 82490ca..2b58545 100644
--- a/client/resourceaccess.cpp
+++ b/client/resourceaccess.cpp
@@ -1,3 +1,23 @@
1/*
2 * Copyright (C) 2014 Aaron Seigo <aseigo@kde.org>
3 *
4 * This library is free software; you can redistribute it and/or
5 * modify it under the terms of the GNU Lesser General Public
6 * License as published by the Free Software Foundation; either
7 * version 2.1 of the License, or (at your option) version 3, or any
8 * later version accepted by the membership of KDE e.V. (or its
9 * successor approved by the membership of KDE e.V.), which shall
10 * act as a proxy defined in Section 6 of version 3 of the license.
11 *
12 * This library 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 GNU
15 * Lesser General Public License for more details.
16 *
17 * You should have received a copy of the GNU Lesser General Public
18 * License along with this library. If not, see <http://www.gnu.org/licenses/>.
19 */
20
1#include "resourceaccess.h" 21#include "resourceaccess.h"
2 22
3#include "common/console.h" 23#include "common/console.h"
diff --git a/client/resourceaccess.h b/client/resourceaccess.h
index 5877b1d..f381af1 100644
--- a/client/resourceaccess.h
+++ b/client/resourceaccess.h
@@ -1,3 +1,23 @@
1/*
2 * Copyright (C) 2014 Aaron Seigo <aseigo@kde.org>
3 *
4 * This library is free software; you can redistribute it and/or
5 * modify it under the terms of the GNU Lesser General Public
6 * License as published by the Free Software Foundation; either
7 * version 2.1 of the License, or (at your option) version 3, or any
8 * later version accepted by the membership of KDE e.V. (or its
9 * successor approved by the membership of KDE e.V.), which shall
10 * act as a proxy defined in Section 6 of version 3 of the license.
11 *
12 * This library 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 GNU
15 * Lesser General Public License for more details.
16 *
17 * You should have received a copy of the GNU Lesser General Public
18 * License along with this library. If not, see <http://www.gnu.org/licenses/>.
19 */
20
1#pragma once 21#pragma once
2 22
3#include <QLocalSocket> 23#include <QLocalSocket>
diff --git a/client/threadboundary.cpp b/client/threadboundary.cpp
index cd30e74..47ec508 100644
--- a/client/threadboundary.cpp
+++ b/client/threadboundary.cpp
@@ -1,3 +1,23 @@
1/*
2 * Copyright (C) 2014 Christian Mollekopf <chrigi_1@fastmail.fm>
3 *
4 * This library is free software; you can redistribute it and/or
5 * modify it under the terms of the GNU Lesser General Public
6 * License as published by the Free Software Foundation; either
7 * version 2.1 of the License, or (at your option) version 3, or any
8 * later version accepted by the membership of KDE e.V. (or its
9 * successor approved by the membership of KDE e.V.), which shall
10 * act as a proxy defined in Section 6 of version 3 of the license.
11 *
12 * This library 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 GNU
15 * Lesser General Public License for more details.
16 *
17 * You should have received a copy of the GNU Lesser General Public
18 * License along with this library. If not, see <http://www.gnu.org/licenses/>.
19 */
20
1#include "threadboundary.h" 21#include "threadboundary.h"
2 22
3Q_DECLARE_METATYPE(std::function<void()>); 23Q_DECLARE_METATYPE(std::function<void()>);
diff --git a/client/threadboundary.h b/client/threadboundary.h
index 8847849..9881afa 100644
--- a/client/threadboundary.h
+++ b/client/threadboundary.h
@@ -1,3 +1,23 @@
1/*
2 * Copyright (C) 2014 Christian Mollekopf <chrigi_1@fastmail.fm>
3 *
4 * This library is free software; you can redistribute it and/or
5 * modify it under the terms of the GNU Lesser General Public
6 * License as published by the Free Software Foundation; either
7 * version 2.1 of the License, or (at your option) version 3, or any
8 * later version accepted by the membership of KDE e.V. (or its
9 * successor approved by the membership of KDE e.V.), which shall
10 * act as a proxy defined in Section 6 of version 3 of the license.
11 *
12 * This library 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 GNU
15 * Lesser General Public License for more details.
16 *
17 * You should have received a copy of the GNU Lesser General Public
18 * License along with this library. If not, see <http://www.gnu.org/licenses/>.
19 */
20
1#pragma once 21#pragma once
2 22
3#include <QObject> 23#include <QObject>
diff --git a/dummyresource/facade.cpp b/dummyresource/facade.cpp
index 668749e..45e891c 100644
--- a/dummyresource/facade.cpp
+++ b/dummyresource/facade.cpp
@@ -1,3 +1,22 @@
1/*
2 * Copyright (C) 2014 Christian Mollekopf <chrigi_1@fastmail.fm>
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 "facade.h" 20#include "facade.h"
2 21
3#include <QDebug> 22#include <QDebug>
diff --git a/dummyresource/facade.h b/dummyresource/facade.h
index 56889aa..11b1de0 100644
--- a/dummyresource/facade.h
+++ b/dummyresource/facade.h
@@ -1,3 +1,22 @@
1/*
2 * Copyright (C) 2014 Christian Mollekopf <chrigi_1@fastmail.fm>
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 "client/clientapi.h" 22#include "client/clientapi.h"
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