Skip to content

Commit

Permalink
Changed license to MIT
Browse files Browse the repository at this point in the history
  • Loading branch information
Ragora committed Oct 2, 2014
1 parent d852363 commit 188e57b
Show file tree
Hide file tree
Showing 7 changed files with 30 additions and 848 deletions.
4 changes: 2 additions & 2 deletions CMakeLists.txt
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
# CMakeLists.txt
# Used for building the example code on any CMake supported system.
# This software is licensed under the Lesser General Public License version 3.
# Please refer to GPL.txt and LGPL.txt for more information.
# This software is licensed under the MIT license. Please refer to
# LICENSE.txt for more information.

CMAKE_MINIMUM_REQUIRED (VERSION 2.6)
PROJECT (EasyDelegate)
Expand Down
674 changes: 0 additions & 674 deletions GPL.txt

This file was deleted.

165 changes: 0 additions & 165 deletions LGPL.txt

This file was deleted.

21 changes: 21 additions & 0 deletions LICENSE.txt
Original file line number Diff line number Diff line change
@@ -0,0 +1,21 @@
The MIT License (MIT)

Copyright (c) 2014 Robert MacGregor

Permission is hereby granted, free of charge, to any person obtaining a copy
of this software and associated documentation files (the "Software"), to deal
in the Software without restriction, including without limitation the rights
to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
copies of the Software, and to permit persons to whom the Software is
furnished to do so, subject to the following conditions:

The above copyright notice and this permission notice shall be included in
all copies or substantial portions of the Software.

THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN
THE SOFTWARE.
2 changes: 1 addition & 1 deletion easydelegates.doxyfile
Original file line number Diff line number Diff line change
Expand Up @@ -38,7 +38,7 @@ PROJECT_NAME = "Easy Delegates"
# could be handy for archiving the generated documentation or if some version
# control system is used.

PROJECT_NUMBER =1.1
PROJECT_NUMBER =1.2

# Using the PROJECT_BRIEF tag one can provide an optional one line description
# for a project that appears at the top of each page and should give viewer a
Expand Down
6 changes: 3 additions & 3 deletions include/easydelegate.hpp
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
/**
* @file easydelegate.hpp
* @version 1.1
* @date 9/25/2014
* @date 10/2/2014
* @author <a href="https://github.com/Ragora">Robert MacGregor</a>
* @brief Portable delegate system that should work on any C++11 compliant compiler.
* @details EasyDelegate is a library that exposes an easy and flexible delegate system with
Expand All @@ -20,8 +20,8 @@
* where sizeof(size_t) is equivalent to sizeof(largest integer type), which has been true for GCC
* and MSVS on Linux and Windows systems.
*
* @copyright This software is licensed under the Lesser General Public License version 3.
* Please refer to GPL.txt and LGPL.txt for more information.
* @copyright This software is licensed under the MIT license. Please refer to LICENSE.txt for more
* information.
* @example ex_delegateset.cpp
*/

Expand Down
6 changes: 3 additions & 3 deletions include/mainpage.h
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
/**
* @file mainpage.h
* @version 1.1
* @date 9/25/2014
* @version 1.2
* @date 10/2/2014
* @author <a href="https://github.com/Ragora">Robert MacGregor</a>
* @brief Main page file for use with Doxygen. This file does absolutely nothing otherwise.
*
Expand Down Expand Up @@ -77,6 +77,6 @@
* @section Links Links
* <ul>
* <li><a href="https://github.com/Ragora">Author: Robert MacGregor</a></li>
* <li><a href="https://github.com/Ragora/EasyDelegate"></a></li>
* <li><a href="https://github.com/Ragora/EasyDelegate">EasyDelegate on GitHub</a></li>
* </ul>
*/

0 comments on commit 188e57b

Please sign in to comment.