summaryrefslogtreecommitdiffstats
path: root/examples/publishsubscribe
diff options
context:
space:
mode:
Diffstat (limited to 'examples/publishsubscribe')
-rw-r--r--examples/publishsubscribe/battery-charge/battery-publisher/batterypublisher.cpp14
-rw-r--r--examples/publishsubscribe/battery-charge/battery-publisher/batterypublisher.h14
-rw-r--r--examples/publishsubscribe/battery-charge/battery-publisher/main.cpp14
-rw-r--r--examples/publishsubscribe/battery-charge/battery-subscriber/battery-subscriber.qml14
-rw-r--r--examples/publishsubscribe/publish-subscribe/main.cpp14
-rw-r--r--examples/publishsubscribe/publish-subscribe/publisherdialog.cpp14
-rw-r--r--examples/publishsubscribe/publish-subscribe/publisherdialog.h14
-rw-r--r--examples/publishsubscribe/publish-subscribe/subscriberdialog.cpp14
-rw-r--r--examples/publishsubscribe/publish-subscribe/subscriberdialog.h14
9 files changed, 108 insertions, 18 deletions
diff --git a/examples/publishsubscribe/battery-charge/battery-publisher/batterypublisher.cpp b/examples/publishsubscribe/battery-charge/battery-publisher/batterypublisher.cpp
index 23f9dca4..f9cb4064 100644
--- a/examples/publishsubscribe/battery-charge/battery-publisher/batterypublisher.cpp
+++ b/examples/publishsubscribe/battery-charge/battery-publisher/batterypublisher.cpp
@@ -1,12 +1,22 @@
/****************************************************************************
**
-** Copyright (C) 2015 The Qt Company Ltd and/or its subsidiary(-ies).
+** Copyright (C) 2017 The Qt Company Ltd and/or its subsidiary(-ies).
** Contact: http://www.qt-project.org/legal
**
** This file is part of the examples of the Qt Mobility Components.
**
** $QT_BEGIN_LICENSE:BSD$
-** You may use this file under the terms of the BSD license as follows:
+** Commercial License Usage
+** Licensees holding valid commercial Qt licenses may use this file in
+** accordance with the commercial license agreement provided with the
+** Software or, alternatively, in accordance with the terms contained in
+** a written agreement between you and The Qt Company. For licensing terms
+** and conditions see https://www.qt.io/terms-conditions. For further
+** information use the contact form at https://www.qt.io/contact-us.
+**
+** BSD License Usage
+** Alternatively, you may use this file under the terms of the BSD license
+** as follows:
**
** "Redistribution and use in source and binary forms, with or without
** modification, are permitted provided that the following conditions are
diff --git a/examples/publishsubscribe/battery-charge/battery-publisher/batterypublisher.h b/examples/publishsubscribe/battery-charge/battery-publisher/batterypublisher.h
index d9439498..cc1c0745 100644
--- a/examples/publishsubscribe/battery-charge/battery-publisher/batterypublisher.h
+++ b/examples/publishsubscribe/battery-charge/battery-publisher/batterypublisher.h
@@ -1,12 +1,22 @@
/****************************************************************************
**
-** Copyright (C) 2015 The Qt Company Ltd and/or its subsidiary(-ies).
+** Copyright (C) 2017 The Qt Company Ltd and/or its subsidiary(-ies).
** Contact: http://www.qt-project.org/legal
**
** This file is part of the examples of the Qt Mobility Components.
**
** $QT_BEGIN_LICENSE:BSD$
-** You may use this file under the terms of the BSD license as follows:
+** Commercial License Usage
+** Licensees holding valid commercial Qt licenses may use this file in
+** accordance with the commercial license agreement provided with the
+** Software or, alternatively, in accordance with the terms contained in
+** a written agreement between you and The Qt Company. For licensing terms
+** and conditions see https://www.qt.io/terms-conditions. For further
+** information use the contact form at https://www.qt.io/contact-us.
+**
+** BSD License Usage
+** Alternatively, you may use this file under the terms of the BSD license
+** as follows:
**
** "Redistribution and use in source and binary forms, with or without
** modification, are permitted provided that the following conditions are
diff --git a/examples/publishsubscribe/battery-charge/battery-publisher/main.cpp b/examples/publishsubscribe/battery-charge/battery-publisher/main.cpp
index 7dd5c91f..01b4d449 100644
--- a/examples/publishsubscribe/battery-charge/battery-publisher/main.cpp
+++ b/examples/publishsubscribe/battery-charge/battery-publisher/main.cpp
@@ -1,12 +1,22 @@
/****************************************************************************
**
-** Copyright (C) 2015 The Qt Company Ltd and/or its subsidiary(-ies).
+** Copyright (C) 2017 The Qt Company Ltd and/or its subsidiary(-ies).
** Contact: http://www.qt-project.org/legal
**
** This file is part of the examples of the Qt Mobility Components.
**
** $QT_BEGIN_LICENSE:BSD$
-** You may use this file under the terms of the BSD license as follows:
+** Commercial License Usage
+** Licensees holding valid commercial Qt licenses may use this file in
+** accordance with the commercial license agreement provided with the
+** Software or, alternatively, in accordance with the terms contained in
+** a written agreement between you and The Qt Company. For licensing terms
+** and conditions see https://www.qt.io/terms-conditions. For further
+** information use the contact form at https://www.qt.io/contact-us.
+**
+** BSD License Usage
+** Alternatively, you may use this file under the terms of the BSD license
+** as follows:
**
** "Redistribution and use in source and binary forms, with or without
** modification, are permitted provided that the following conditions are
diff --git a/examples/publishsubscribe/battery-charge/battery-subscriber/battery-subscriber.qml b/examples/publishsubscribe/battery-charge/battery-subscriber/battery-subscriber.qml
index c7436ef3..7cbbb70b 100644
--- a/examples/publishsubscribe/battery-charge/battery-subscriber/battery-subscriber.qml
+++ b/examples/publishsubscribe/battery-charge/battery-subscriber/battery-subscriber.qml
@@ -1,12 +1,22 @@
/****************************************************************************
**
-** Copyright (C) 2015 The Qt Company Ltd and/or its subsidiary(-ies).
+** Copyright (C) 2017 The Qt Company Ltd and/or its subsidiary(-ies).
** Contact: http://www.qt-project.org/legal
**
** This file is part of the examples of the Qt Mobility Components.
**
** $QT_BEGIN_LICENSE:BSD$
-** You may use this file under the terms of the BSD license as follows:
+** Commercial License Usage
+** Licensees holding valid commercial Qt licenses may use this file in
+** accordance with the commercial license agreement provided with the
+** Software or, alternatively, in accordance with the terms contained in
+** a written agreement between you and The Qt Company. For licensing terms
+** and conditions see https://www.qt.io/terms-conditions. For further
+** information use the contact form at https://www.qt.io/contact-us.
+**
+** BSD License Usage
+** Alternatively, you may use this file under the terms of the BSD license
+** as follows:
**
** "Redistribution and use in source and binary forms, with or without
** modification, are permitted provided that the following conditions are
diff --git a/examples/publishsubscribe/publish-subscribe/main.cpp b/examples/publishsubscribe/publish-subscribe/main.cpp
index 27ab8a9f..bd35484e 100644
--- a/examples/publishsubscribe/publish-subscribe/main.cpp
+++ b/examples/publishsubscribe/publish-subscribe/main.cpp
@@ -1,12 +1,22 @@
/****************************************************************************
**
-** Copyright (C) 2015 The Qt Company Ltd and/or its subsidiary(-ies).
+** Copyright (C) 2017 The Qt Company Ltd and/or its subsidiary(-ies).
** Contact: http://www.qt-project.org/legal
**
** This file is part of the examples of the Qt Mobility Components.
**
** $QT_BEGIN_LICENSE:BSD$
-** You may use this file under the terms of the BSD license as follows:
+** Commercial License Usage
+** Licensees holding valid commercial Qt licenses may use this file in
+** accordance with the commercial license agreement provided with the
+** Software or, alternatively, in accordance with the terms contained in
+** a written agreement between you and The Qt Company. For licensing terms
+** and conditions see https://www.qt.io/terms-conditions. For further
+** information use the contact form at https://www.qt.io/contact-us.
+**
+** BSD License Usage
+** Alternatively, you may use this file under the terms of the BSD license
+** as follows:
**
** "Redistribution and use in source and binary forms, with or without
** modification, are permitted provided that the following conditions are
diff --git a/examples/publishsubscribe/publish-subscribe/publisherdialog.cpp b/examples/publishsubscribe/publish-subscribe/publisherdialog.cpp
index f79411ec..12c1aa05 100644
--- a/examples/publishsubscribe/publish-subscribe/publisherdialog.cpp
+++ b/examples/publishsubscribe/publish-subscribe/publisherdialog.cpp
@@ -1,12 +1,22 @@
/****************************************************************************
**
-** Copyright (C) 2015 The Qt Company Ltd and/or its subsidiary(-ies).
+** Copyright (C) 2017 The Qt Company Ltd and/or its subsidiary(-ies).
** Contact: http://www.qt-project.org/legal
**
** This file is part of the examples of the Qt Mobility Components.
**
** $QT_BEGIN_LICENSE:BSD$
-** You may use this file under the terms of the BSD license as follows:
+** Commercial License Usage
+** Licensees holding valid commercial Qt licenses may use this file in
+** accordance with the commercial license agreement provided with the
+** Software or, alternatively, in accordance with the terms contained in
+** a written agreement between you and The Qt Company. For licensing terms
+** and conditions see https://www.qt.io/terms-conditions. For further
+** information use the contact form at https://www.qt.io/contact-us.
+**
+** BSD License Usage
+** Alternatively, you may use this file under the terms of the BSD license
+** as follows:
**
** "Redistribution and use in source and binary forms, with or without
** modification, are permitted provided that the following conditions are
diff --git a/examples/publishsubscribe/publish-subscribe/publisherdialog.h b/examples/publishsubscribe/publish-subscribe/publisherdialog.h
index 73576864..98f3db8f 100644
--- a/examples/publishsubscribe/publish-subscribe/publisherdialog.h
+++ b/examples/publishsubscribe/publish-subscribe/publisherdialog.h
@@ -1,12 +1,22 @@
/****************************************************************************
**
-** Copyright (C) 2015 The Qt Company Ltd and/or its subsidiary(-ies).
+** Copyright (C) 2017 The Qt Company Ltd and/or its subsidiary(-ies).
** Contact: http://www.qt-project.org/legal
**
** This file is part of the examples of the Qt Mobility Components.
**
** $QT_BEGIN_LICENSE:BSD$
-** You may use this file under the terms of the BSD license as follows:
+** Commercial License Usage
+** Licensees holding valid commercial Qt licenses may use this file in
+** accordance with the commercial license agreement provided with the
+** Software or, alternatively, in accordance with the terms contained in
+** a written agreement between you and The Qt Company. For licensing terms
+** and conditions see https://www.qt.io/terms-conditions. For further
+** information use the contact form at https://www.qt.io/contact-us.
+**
+** BSD License Usage
+** Alternatively, you may use this file under the terms of the BSD license
+** as follows:
**
** "Redistribution and use in source and binary forms, with or without
** modification, are permitted provided that the following conditions are
diff --git a/examples/publishsubscribe/publish-subscribe/subscriberdialog.cpp b/examples/publishsubscribe/publish-subscribe/subscriberdialog.cpp
index 8b032faa..80405454 100644
--- a/examples/publishsubscribe/publish-subscribe/subscriberdialog.cpp
+++ b/examples/publishsubscribe/publish-subscribe/subscriberdialog.cpp
@@ -1,12 +1,22 @@
/****************************************************************************
**
-** Copyright (C) 2015 The Qt Company Ltd and/or its subsidiary(-ies).
+** Copyright (C) 2017 The Qt Company Ltd and/or its subsidiary(-ies).
** Contact: http://www.qt-project.org/legal
**
** This file is part of the examples of the Qt Mobility Components.
**
** $QT_BEGIN_LICENSE:BSD$
-** You may use this file under the terms of the BSD license as follows:
+** Commercial License Usage
+** Licensees holding valid commercial Qt licenses may use this file in
+** accordance with the commercial license agreement provided with the
+** Software or, alternatively, in accordance with the terms contained in
+** a written agreement between you and The Qt Company. For licensing terms
+** and conditions see https://www.qt.io/terms-conditions. For further
+** information use the contact form at https://www.qt.io/contact-us.
+**
+** BSD License Usage
+** Alternatively, you may use this file under the terms of the BSD license
+** as follows:
**
** "Redistribution and use in source and binary forms, with or without
** modification, are permitted provided that the following conditions are
diff --git a/examples/publishsubscribe/publish-subscribe/subscriberdialog.h b/examples/publishsubscribe/publish-subscribe/subscriberdialog.h
index 55d1cf9a..f76b8504 100644
--- a/examples/publishsubscribe/publish-subscribe/subscriberdialog.h
+++ b/examples/publishsubscribe/publish-subscribe/subscriberdialog.h
@@ -1,12 +1,22 @@
/****************************************************************************
**
-** Copyright (C) 2015 The Qt Company Ltd and/or its subsidiary(-ies).
+** Copyright (C) 2017 The Qt Company Ltd and/or its subsidiary(-ies).
** Contact: http://www.qt-project.org/legal
**
** This file is part of the examples of the Qt Mobility Components.
**
** $QT_BEGIN_LICENSE:BSD$
-** You may use this file under the terms of the BSD license as follows:
+** Commercial License Usage
+** Licensees holding valid commercial Qt licenses may use this file in
+** accordance with the commercial license agreement provided with the
+** Software or, alternatively, in accordance with the terms contained in
+** a written agreement between you and The Qt Company. For licensing terms
+** and conditions see https://www.qt.io/terms-conditions. For further
+** information use the contact form at https://www.qt.io/contact-us.
+**
+** BSD License Usage
+** Alternatively, you may use this file under the terms of the BSD license
+** as follows:
**
** "Redistribution and use in source and binary forms, with or without
** modification, are permitted provided that the following conditions are