summaryrefslogtreecommitdiff
path: root/qt/consoleserver
diff options
context:
space:
mode:
Diffstat (limited to 'qt/consoleserver')
-rw-r--r--qt/consoleserver/irc.cpp19
-rw-r--r--qt/consoleserver/irc.h19
-rw-r--r--qt/consoleserver/main.cpp19
-rw-r--r--qt/consoleserver/serial.cpp19
-rw-r--r--qt/consoleserver/serial.h19
-rw-r--r--qt/consoleserver/server.cpp19
-rw-r--r--qt/consoleserver/server.h19
7 files changed, 133 insertions, 0 deletions
diff --git a/qt/consoleserver/irc.cpp b/qt/consoleserver/irc.cpp
index 3a2ed79..5537440 100644
--- a/qt/consoleserver/irc.cpp
+++ b/qt/consoleserver/irc.cpp
@@ -1,3 +1,22 @@
+/*
+ * Copyright Daniel Jones 2016-2018
+ *
+ * This file is part of RGBController.
+ *
+ * RGBController is free software: you can redistribute it and/or modifiy
+ * it under the terms of the GNU General Public License as published by
+ * the Free Software Foundation, either version 3 of the License, or
+ * (at your option) any later version.
+ *
+ * RGBController is distributed in the hope that it will be useful,
+ * but WITHOUT ANY WARRANTY; without even the implied warranty of
+ * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
+ * GNU General Public License for more details.
+ *
+ * You should have received a copy of the GNU General Public License
+ * along with RGBController. If not, see <http://www.gnu.org/licenses/>.
+ */
+
#include "irc.h"
irc::irc(QObject *parent) : QObject(parent)
diff --git a/qt/consoleserver/irc.h b/qt/consoleserver/irc.h
index 733bebf..c3b2612 100644
--- a/qt/consoleserver/irc.h
+++ b/qt/consoleserver/irc.h
@@ -1,3 +1,22 @@
+/*
+ * Copyright Daniel Jones 2016-2018
+ *
+ * This file is part of RGBController.
+ *
+ * RGBController is free software: you can redistribute it and/or modifiy
+ * it under the terms of the GNU General Public License as published by
+ * the Free Software Foundation, either version 3 of the License, or
+ * (at your option) any later version.
+ *
+ * RGBController is distributed in the hope that it will be useful,
+ * but WITHOUT ANY WARRANTY; without even the implied warranty of
+ * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
+ * GNU General Public License for more details.
+ *
+ * You should have received a copy of the GNU General Public License
+ * along with RGBController. If not, see <http://www.gnu.org/licenses/>.
+ */
+
#ifndef IRC_H
#define IRC_H
diff --git a/qt/consoleserver/main.cpp b/qt/consoleserver/main.cpp
index c944e38..6ef81d5 100644
--- a/qt/consoleserver/main.cpp
+++ b/qt/consoleserver/main.cpp
@@ -1,3 +1,22 @@
+/*
+ * Copyright Daniel Jones 2016-2018
+ *
+ * This file is part of RGBController.
+ *
+ * RGBController is free software: you can redistribute it and/or modifiy
+ * it under the terms of the GNU General Public License as published by
+ * the Free Software Foundation, either version 3 of the License, or
+ * (at your option) any later version.
+ *
+ * RGBController is distributed in the hope that it will be useful,
+ * but WITHOUT ANY WARRANTY; without even the implied warranty of
+ * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
+ * GNU General Public License for more details.
+ *
+ * You should have received a copy of the GNU General Public License
+ * along with RGBController. If not, see <http://www.gnu.org/licenses/>.
+ */
+
#include <QCoreApplication>
#include <QObject>
#include "serial.h"
diff --git a/qt/consoleserver/serial.cpp b/qt/consoleserver/serial.cpp
index aea46bb..b83a55f 100644
--- a/qt/consoleserver/serial.cpp
+++ b/qt/consoleserver/serial.cpp
@@ -1,3 +1,22 @@
+/*
+ * Copyright Daniel Jones 2016-2018
+ *
+ * This file is part of RGBController.
+ *
+ * RGBController is free software: you can redistribute it and/or modifiy
+ * it under the terms of the GNU General Public License as published by
+ * the Free Software Foundation, either version 3 of the License, or
+ * (at your option) any later version.
+ *
+ * RGBController is distributed in the hope that it will be useful,
+ * but WITHOUT ANY WARRANTY; without even the implied warranty of
+ * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
+ * GNU General Public License for more details.
+ *
+ * You should have received a copy of the GNU General Public License
+ * along with RGBController. If not, see <http://www.gnu.org/licenses/>.
+ */
+
#include "serial.h"
#include <QThread>
diff --git a/qt/consoleserver/serial.h b/qt/consoleserver/serial.h
index 3f0386a..d22adfb 100644
--- a/qt/consoleserver/serial.h
+++ b/qt/consoleserver/serial.h
@@ -1,3 +1,22 @@
+/*
+ * Copyright Daniel Jones 2016-2018
+ *
+ * This file is part of RGBController.
+ *
+ * RGBController is free software: you can redistribute it and/or modifiy
+ * it under the terms of the GNU General Public License as published by
+ * the Free Software Foundation, either version 3 of the License, or
+ * (at your option) any later version.
+ *
+ * RGBController is distributed in the hope that it will be useful,
+ * but WITHOUT ANY WARRANTY; without even the implied warranty of
+ * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
+ * GNU General Public License for more details.
+ *
+ * You should have received a copy of the GNU General Public License
+ * along with RGBController. If not, see <http://www.gnu.org/licenses/>.
+ */
+
#ifndef SERIAL_H
#define SERIAL_H
diff --git a/qt/consoleserver/server.cpp b/qt/consoleserver/server.cpp
index 401ee8d..9fd532d 100644
--- a/qt/consoleserver/server.cpp
+++ b/qt/consoleserver/server.cpp
@@ -1,3 +1,22 @@
+/*
+ * Copyright Daniel Jones 2016-2018
+ *
+ * This file is part of RGBController.
+ *
+ * RGBController is free software: you can redistribute it and/or modifiy
+ * it under the terms of the GNU General Public License as published by
+ * the Free Software Foundation, either version 3 of the License, or
+ * (at your option) any later version.
+ *
+ * RGBController is distributed in the hope that it will be useful,
+ * but WITHOUT ANY WARRANTY; without even the implied warranty of
+ * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
+ * GNU General Public License for more details.
+ *
+ * You should have received a copy of the GNU General Public License
+ * along with RGBController. If not, see <http://www.gnu.org/licenses/>.
+ */
+
#include "server.h"
server::server(QObject *parent) : QObject(parent)
diff --git a/qt/consoleserver/server.h b/qt/consoleserver/server.h
index 9fd84dc..bccae34 100644
--- a/qt/consoleserver/server.h
+++ b/qt/consoleserver/server.h
@@ -1,3 +1,22 @@
+/*
+ * Copyright Daniel Jones 2016-2018
+ *
+ * This file is part of RGBController.
+ *
+ * RGBController is free software: you can redistribute it and/or modifiy
+ * it under the terms of the GNU General Public License as published by
+ * the Free Software Foundation, either version 3 of the License, or
+ * (at your option) any later version.
+ *
+ * RGBController is distributed in the hope that it will be useful,
+ * but WITHOUT ANY WARRANTY; without even the implied warranty of
+ * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
+ * GNU General Public License for more details.
+ *
+ * You should have received a copy of the GNU General Public License
+ * along with RGBController. If not, see <http://www.gnu.org/licenses/>.
+ */
+
#ifndef SERVER_H
#define SERVER_H