Skip to content

Commit

Permalink
Add License
Browse files Browse the repository at this point in the history
  • Loading branch information
rferrazz committed Jul 30, 2014
1 parent 8c0bb9e commit d61dd22
Show file tree
Hide file tree
Showing 8 changed files with 443 additions and 0 deletions.
373 changes: 373 additions & 0 deletions LICENSE.md

Large diffs are not rendered by default.

10 changes: 10 additions & 0 deletions examples/pubsub/main.qml
Original file line number Diff line number Diff line change
@@ -1,3 +1,13 @@
/*
* ZmQML - QML binding for zeromq.
*
* Copyright (C) 2014 Riccardo Ferrazzo
*
* This Source Code Form is subject to the terms of the Mozilla Public
* License, v. 2.0. If a copy of the MPL was not distributed with this
* file, You can obtain one at http://mozilla.org/MPL/2.0/.
*/

import QtQuick 2.1
import QtQuick.Window 2.1

Expand Down
10 changes: 10 additions & 0 deletions zmqml/zmqcontext.cpp
Original file line number Diff line number Diff line change
@@ -1,3 +1,13 @@
/*
* ZmQML - QML binding for zeromq.
*
* Copyright (C) 2014 Riccardo Ferrazzo
*
* This Source Code Form is subject to the terms of the Mozilla Public
* License, v. 2.0. If a copy of the MPL was not distributed with this
* file, You can obtain one at http://mozilla.org/MPL/2.0/.
*/

#include "zmqcontext.h"

#include <QDebug>
Expand Down
10 changes: 10 additions & 0 deletions zmqml/zmqcontext.h
Original file line number Diff line number Diff line change
@@ -1,3 +1,13 @@
/*
* ZmQML - QML binding for zeromq.
*
* Copyright (C) 2014 Riccardo Ferrazzo
*
* This Source Code Form is subject to the terms of the Mozilla Public
* License, v. 2.0. If a copy of the MPL was not distributed with this
* file, You can obtain one at http://mozilla.org/MPL/2.0/.
*/

#ifndef ZMQCONTEXT_H
#define ZMQCONTEXT_H

Expand Down
10 changes: 10 additions & 0 deletions zmqml/zmqml_plugin.cpp
Original file line number Diff line number Diff line change
@@ -1,3 +1,13 @@
/*
* ZmQML - QML binding for zeromq.
*
* Copyright (C) 2014 Riccardo Ferrazzo
*
* This Source Code Form is subject to the terms of the Mozilla Public
* License, v. 2.0. If a copy of the MPL was not distributed with this
* file, You can obtain one at http://mozilla.org/MPL/2.0/.
*/

#include "zmqml_plugin.h"
#include "zmqsocket.h"

Expand Down
10 changes: 10 additions & 0 deletions zmqml/zmqml_plugin.h
Original file line number Diff line number Diff line change
@@ -1,3 +1,13 @@
/*
* ZmQML - QML binding for zeromq.
*
* Copyright (C) 2014 Riccardo Ferrazzo
*
* This Source Code Form is subject to the terms of the Mozilla Public
* License, v. 2.0. If a copy of the MPL was not distributed with this
* file, You can obtain one at http://mozilla.org/MPL/2.0/.
*/

#ifndef ZMQML_PLUGIN_H
#define ZMQML_PLUGIN_H

Expand Down
10 changes: 10 additions & 0 deletions zmqml/zmqsocket.cpp
Original file line number Diff line number Diff line change
@@ -1,3 +1,13 @@
/*
* ZmQML - QML binding for zeromq.
*
* Copyright (C) 2014 Riccardo Ferrazzo
*
* This Source Code Form is subject to the terms of the Mozilla Public
* License, v. 2.0. If a copy of the MPL was not distributed with this
* file, You can obtain one at http://mozilla.org/MPL/2.0/.
*/

#include "zmqsocket.h"
#include "zmqcontext.h"

Expand Down
10 changes: 10 additions & 0 deletions zmqml/zmqsocket.h
Original file line number Diff line number Diff line change
@@ -1,3 +1,13 @@
/*
* ZmQML - QML binding for zeromq.
*
* Copyright (C) 2014 Riccardo Ferrazzo
*
* This Source Code Form is subject to the terms of the Mozilla Public
* License, v. 2.0. If a copy of the MPL was not distributed with this
* file, You can obtain one at http://mozilla.org/MPL/2.0/.
*/

#ifndef ZMQSOCKET_H
#define ZMQSOCKET_H

Expand Down

0 comments on commit d61dd22

Please sign in to comment.