CCOPENLIB is a free open source library for C++14 that provides commonly needed patterns.
It will have no external dependencies other than C++14.
It will provide classes that I commonly need and you might find in other libraries that are either subject to change, too complex or too large.
I provide this to the world under an MIT license as an appreciation to other libraries that are provided under permissive licenses that I might have used in the past.
Examples are found in the documentation or in EXAMPLES.md files in the include folder structure.
When you decide to use this project as a dynamic library, which is currently not supported, keep the following in mind:
Odd major versions will not guarantee ABI compatibility. So 1.2.0.0 might not be ABI compatible with 1.1.0.0.
Even major versions will guarantee ABI compatibility. So 2.2.0.0 will be ABI compatible with 2.1.0.0.
SPDX-License-Identifier: MIT
© 2017 CrossCode / Patrick Vollebregt - All rights reserved
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.
If you use this code, please mention usages of this library and the copyright notice visible in your end product or distributed documentation. For example:
This product uses "ccopenlib" written and copyrighted by CrossCode / Patrick Vollebregt. Visit http://www.ccopenlib.com for more information.
If for some reason this not possible, please contact: [email protected] to purchase a license exception.
If you'd like to modify and/or share this code, share it under the same license, and keep the original copyright notice intact.
If you have found any errors or improvements you'd like to share, please contact me: [email protected]