diff options
author | Remko Tronçon <git@el-tramo.be> | 2010-04-08 19:10:45 (GMT) |
---|---|---|
committer | Remko Tronçon <git@el-tramo.be> | 2010-04-08 19:10:45 (GMT) |
commit | d53ceecb25f336fd1e7e5d9a6ae52599ff2cb12b (patch) | |
tree | bc59b7ea1adf2b94c1594dfd74d7f9353386e133 /Slimber | |
parent | 0313b451afbeffc33cc0060ce6fd7b4f2ee9a2bb (diff) | |
parent | f2637331516790242317997ca099e1bc1901c935 (diff) | |
download | swift-contrib-d53ceecb25f336fd1e7e5d9a6ae52599ff2cb12b.zip swift-contrib-d53ceecb25f336fd1e7e5d9a6ae52599ff2cb12b.tar.bz2 |
Merge branch 'copyrights'
Diffstat (limited to 'Slimber')
-rw-r--r-- | Slimber/CLI/main.cpp | 6 | ||||
-rw-r--r-- | Slimber/Cocoa/CocoaAction.h | 6 | ||||
-rw-r--r-- | Slimber/Cocoa/CocoaController.h | 6 | ||||
-rw-r--r-- | Slimber/Cocoa/CocoaMenulet.h | 6 | ||||
-rw-r--r-- | Slimber/FileVCardCollection.cpp | 6 | ||||
-rw-r--r-- | Slimber/FileVCardCollection.h | 6 | ||||
-rw-r--r-- | Slimber/LinkLocalPresenceManager.cpp | 6 | ||||
-rw-r--r-- | Slimber/LinkLocalPresenceManager.h | 6 | ||||
-rw-r--r-- | Slimber/MainController.cpp | 6 | ||||
-rw-r--r-- | Slimber/MainController.h | 6 | ||||
-rw-r--r-- | Slimber/Menulet.cpp | 6 | ||||
-rw-r--r-- | Slimber/Menulet.h | 6 | ||||
-rw-r--r-- | Slimber/MenuletController.cpp | 6 | ||||
-rw-r--r-- | Slimber/MenuletController.h | 6 | ||||
-rw-r--r-- | Slimber/Qt/QtMenulet.cpp | 6 | ||||
-rw-r--r-- | Slimber/Qt/QtMenulet.h | 6 | ||||
-rw-r--r-- | Slimber/Qt/main.cpp | 6 | ||||
-rw-r--r-- | Slimber/Server.cpp | 6 | ||||
-rw-r--r-- | Slimber/Server.h | 6 | ||||
-rw-r--r-- | Slimber/ServerError.h | 6 | ||||
-rw-r--r-- | Slimber/UnitTest/LinkLocalPresenceManagerTest.cpp | 6 | ||||
-rw-r--r-- | Slimber/UnitTest/MenuletControllerTest.cpp | 6 | ||||
-rw-r--r-- | Slimber/VCardCollection.cpp | 6 | ||||
-rw-r--r-- | Slimber/VCardCollection.h | 6 |
24 files changed, 144 insertions, 0 deletions
diff --git a/Slimber/CLI/main.cpp b/Slimber/CLI/main.cpp index 09e7869..287859b 100644 --- a/Slimber/CLI/main.cpp +++ b/Slimber/CLI/main.cpp @@ -1,3 +1,9 @@ +/* + * Copyright (c) 2010 Remko Tronçon + * Licensed under the GNU General Public License v3. + * See Documentation/Licenses/GPLv3.txt for more information. + */ + #include <string> #include <boost/bind.hpp> diff --git a/Slimber/Cocoa/CocoaAction.h b/Slimber/Cocoa/CocoaAction.h index d02c8b5..a46ef7c 100644 --- a/Slimber/Cocoa/CocoaAction.h +++ b/Slimber/Cocoa/CocoaAction.h @@ -1,3 +1,9 @@ +/* + * Copyright (c) 2010 Remko Tronçon + * Licensed under the GNU General Public License v3. + * See Documentation/Licenses/GPLv3.txt for more information. + */ + #pragma once #include <Cocoa/Cocoa.h> diff --git a/Slimber/Cocoa/CocoaController.h b/Slimber/Cocoa/CocoaController.h index f4be87d..27542c6 100644 --- a/Slimber/Cocoa/CocoaController.h +++ b/Slimber/Cocoa/CocoaController.h @@ -1,3 +1,9 @@ +/* + * Copyright (c) 2010 Remko Tronçon + * Licensed under the GNU General Public License v3. + * See Documentation/Licenses/GPLv3.txt for more information. + */ + #include <Cocoa/Cocoa.h> class MainController; diff --git a/Slimber/Cocoa/CocoaMenulet.h b/Slimber/Cocoa/CocoaMenulet.h index 913731f..292c8b9 100644 --- a/Slimber/Cocoa/CocoaMenulet.h +++ b/Slimber/Cocoa/CocoaMenulet.h @@ -1,3 +1,9 @@ +/* + * Copyright (c) 2010 Remko Tronçon + * Licensed under the GNU General Public License v3. + * See Documentation/Licenses/GPLv3.txt for more information. + */ + #pragma once #include <Cocoa/Cocoa.h> diff --git a/Slimber/FileVCardCollection.cpp b/Slimber/FileVCardCollection.cpp index eb7d9cc..6a8b6b1 100644 --- a/Slimber/FileVCardCollection.cpp +++ b/Slimber/FileVCardCollection.cpp @@ -1,3 +1,9 @@ +/* + * Copyright (c) 2010 Remko Tronçon + * Licensed under the GNU General Public License v3. + * See Documentation/Licenses/GPLv3.txt for more information. + */ + #include "Slimber/FileVCardCollection.h" #include <boost/filesystem/fstream.hpp> diff --git a/Slimber/FileVCardCollection.h b/Slimber/FileVCardCollection.h index dde47df..dc9df38 100644 --- a/Slimber/FileVCardCollection.h +++ b/Slimber/FileVCardCollection.h @@ -1,3 +1,9 @@ +/* + * Copyright (c) 2010 Remko Tronçon + * Licensed under the GNU General Public License v3. + * See Documentation/Licenses/GPLv3.txt for more information. + */ + #pragma once #include <boost/shared_ptr.hpp> diff --git a/Slimber/LinkLocalPresenceManager.cpp b/Slimber/LinkLocalPresenceManager.cpp index d5834c7..465d849 100644 --- a/Slimber/LinkLocalPresenceManager.cpp +++ b/Slimber/LinkLocalPresenceManager.cpp @@ -1,3 +1,9 @@ +/* + * Copyright (c) 2010 Remko Tronçon + * Licensed under the GNU General Public License v3. + * See Documentation/Licenses/GPLv3.txt for more information. + */ + #include "Slimber/LinkLocalPresenceManager.h" #include <boost/bind.hpp> diff --git a/Slimber/LinkLocalPresenceManager.h b/Slimber/LinkLocalPresenceManager.h index c8f77e9..96a166a 100644 --- a/Slimber/LinkLocalPresenceManager.h +++ b/Slimber/LinkLocalPresenceManager.h @@ -1,3 +1,9 @@ +/* + * Copyright (c) 2010 Remko Tronçon + * Licensed under the GNU General Public License v3. + * See Documentation/Licenses/GPLv3.txt for more information. + */ + #pragma once #include <boost/shared_ptr.hpp> diff --git a/Slimber/MainController.cpp b/Slimber/MainController.cpp index c8c2ad1..1d5b86c 100644 --- a/Slimber/MainController.cpp +++ b/Slimber/MainController.cpp @@ -1,3 +1,9 @@ +/* + * Copyright (c) 2010 Remko Tronçon + * Licensed under the GNU General Public License v3. + * See Documentation/Licenses/GPLv3.txt for more information. + */ + #include "Slimber/MainController.h" #include <boost/bind.hpp> diff --git a/Slimber/MainController.h b/Slimber/MainController.h index 2c74e4c..de90932 100644 --- a/Slimber/MainController.h +++ b/Slimber/MainController.h @@ -1,3 +1,9 @@ +/* + * Copyright (c) 2010 Remko Tronçon + * Licensed under the GNU General Public License v3. + * See Documentation/Licenses/GPLv3.txt for more information. + */ + #pragma once #include <boost/shared_ptr.hpp> diff --git a/Slimber/Menulet.cpp b/Slimber/Menulet.cpp index bdadb98..8892aab 100644 --- a/Slimber/Menulet.cpp +++ b/Slimber/Menulet.cpp @@ -1,3 +1,9 @@ +/* + * Copyright (c) 2010 Remko Tronçon + * Licensed under the GNU General Public License v3. + * See Documentation/Licenses/GPLv3.txt for more information. + */ + #include "Slimber/Menulet.h" Menulet::~Menulet() { diff --git a/Slimber/Menulet.h b/Slimber/Menulet.h index 1b8ed18..d1ff9e2 100644 --- a/Slimber/Menulet.h +++ b/Slimber/Menulet.h @@ -1,3 +1,9 @@ +/* + * Copyright (c) 2010 Remko Tronçon + * Licensed under the GNU General Public License v3. + * See Documentation/Licenses/GPLv3.txt for more information. + */ + #pragma once #include <boost/signal.hpp> diff --git a/Slimber/MenuletController.cpp b/Slimber/MenuletController.cpp index 1532459..1155c81 100644 --- a/Slimber/MenuletController.cpp +++ b/Slimber/MenuletController.cpp @@ -1,3 +1,9 @@ +/* + * Copyright (c) 2010 Remko Tronçon + * Licensed under the GNU General Public License v3. + * See Documentation/Licenses/GPLv3.txt for more information. + */ + #include "Slimber/MenuletController.h" #include "Swiften/Base/foreach.h" diff --git a/Slimber/MenuletController.h b/Slimber/MenuletController.h index 5e45038..6b7f6fd 100644 --- a/Slimber/MenuletController.h +++ b/Slimber/MenuletController.h @@ -1,3 +1,9 @@ +/* + * Copyright (c) 2010 Remko Tronçon + * Licensed under the GNU General Public License v3. + * See Documentation/Licenses/GPLv3.txt for more information. + */ + #pragma once #include <vector> diff --git a/Slimber/Qt/QtMenulet.cpp b/Slimber/Qt/QtMenulet.cpp index 58c7d50..71e4f70 100644 --- a/Slimber/Qt/QtMenulet.cpp +++ b/Slimber/Qt/QtMenulet.cpp @@ -1,2 +1,8 @@ +/* + * Copyright (c) 2010 Remko Tronçon + * Licensed under the GNU General Public License v3. + * See Documentation/Licenses/GPLv3.txt for more information. + */ + #include "Slimber/Qt/QtMenulet.h" diff --git a/Slimber/Qt/QtMenulet.h b/Slimber/Qt/QtMenulet.h index 4ac9140..19458b3 100644 --- a/Slimber/Qt/QtMenulet.h +++ b/Slimber/Qt/QtMenulet.h @@ -1,3 +1,9 @@ +/* + * Copyright (c) 2010 Remko Tronçon + * Licensed under the GNU General Public License v3. + * See Documentation/Licenses/GPLv3.txt for more information. + */ + #pragma once #include <QCoreApplication> diff --git a/Slimber/Qt/main.cpp b/Slimber/Qt/main.cpp index 0988e7c..05a4508 100644 --- a/Slimber/Qt/main.cpp +++ b/Slimber/Qt/main.cpp @@ -1,3 +1,9 @@ +/* + * Copyright (c) 2010 Remko Tronçon + * Licensed under the GNU General Public License v3. + * See Documentation/Licenses/GPLv3.txt for more information. + */ + #include <QApplication> #include <QSystemTrayIcon> #include <QMessageBox> diff --git a/Slimber/Server.cpp b/Slimber/Server.cpp index 278a572..cbb52b7 100644 --- a/Slimber/Server.cpp +++ b/Slimber/Server.cpp @@ -1,3 +1,9 @@ +/* + * Copyright (c) 2010 Remko Tronçon + * Licensed under the GNU General Public License v3. + * See Documentation/Licenses/GPLv3.txt for more information. + */ + #include "Slimber/Server.h" #include <string> diff --git a/Slimber/Server.h b/Slimber/Server.h index 3587c50..864f705 100644 --- a/Slimber/Server.h +++ b/Slimber/Server.h @@ -1,3 +1,9 @@ +/* + * Copyright (c) 2010 Remko Tronçon + * Licensed under the GNU General Public License v3. + * See Documentation/Licenses/GPLv3.txt for more information. + */ + #pragma once #include <boost/shared_ptr.hpp> diff --git a/Slimber/ServerError.h b/Slimber/ServerError.h index ce293c2..ad09275 100644 --- a/Slimber/ServerError.h +++ b/Slimber/ServerError.h @@ -1,3 +1,9 @@ +/* + * Copyright (c) 2010 Remko Tronçon + * Licensed under the GNU General Public License v3. + * See Documentation/Licenses/GPLv3.txt for more information. + */ + #pragma once #include "Swiften/Base/String.h" diff --git a/Slimber/UnitTest/LinkLocalPresenceManagerTest.cpp b/Slimber/UnitTest/LinkLocalPresenceManagerTest.cpp index f77a8cb..f8ee755 100644 --- a/Slimber/UnitTest/LinkLocalPresenceManagerTest.cpp +++ b/Slimber/UnitTest/LinkLocalPresenceManagerTest.cpp @@ -1,3 +1,9 @@ +/* + * Copyright (c) 2010 Remko Tronçon + * Licensed under the GNU General Public License v3. + * See Documentation/Licenses/GPLv3.txt for more information. + */ + #include <cppunit/extensions/HelperMacros.h> #include <cppunit/extensions/TestFactoryRegistry.h> #include <boost/bind.hpp> diff --git a/Slimber/UnitTest/MenuletControllerTest.cpp b/Slimber/UnitTest/MenuletControllerTest.cpp index c666679..9722125 100644 --- a/Slimber/UnitTest/MenuletControllerTest.cpp +++ b/Slimber/UnitTest/MenuletControllerTest.cpp @@ -1,3 +1,9 @@ +/* + * Copyright (c) 2010 Remko Tronçon + * Licensed under the GNU General Public License v3. + * See Documentation/Licenses/GPLv3.txt for more information. + */ + #include <cppunit/extensions/HelperMacros.h> #include <cppunit/extensions/TestFactoryRegistry.h> diff --git a/Slimber/VCardCollection.cpp b/Slimber/VCardCollection.cpp index 1477429..a4eeb04 100644 --- a/Slimber/VCardCollection.cpp +++ b/Slimber/VCardCollection.cpp @@ -1,3 +1,9 @@ +/* + * Copyright (c) 2010 Remko Tronçon + * Licensed under the GNU General Public License v3. + * See Documentation/Licenses/GPLv3.txt for more information. + */ + #include "Slimber/VCardCollection.h" namespace Swift { diff --git a/Slimber/VCardCollection.h b/Slimber/VCardCollection.h index 42f7df7..2203444 100644 --- a/Slimber/VCardCollection.h +++ b/Slimber/VCardCollection.h @@ -1,3 +1,9 @@ +/* + * Copyright (c) 2010 Remko Tronçon + * Licensed under the GNU General Public License v3. + * See Documentation/Licenses/GPLv3.txt for more information. + */ + #pragma once #include <boost/shared_ptr.hpp> |