diff --git a/Jupiter/ArrayList.h b/Jupiter/ArrayList.h index 3bfe610..964b860 100644 --- a/Jupiter/ArrayList.h +++ b/Jupiter/ArrayList.h @@ -1,17 +1,18 @@ /** * Copyright (C) 2013-2015 Justin James. * - * This license must be preserved. - * Any applications, libraries, or code which make any use of any - * component of this program must not be commercial, unless explicit - * permission is granted from the original author. The use of this - * program for non-profit purposes is permitted. + * Permission to use, copy, modify, and/or distribute this software for any + * purpose with or without fee is hereby granted, provided that the above + * copyright notice and this permission notice appear in all copies. * - * This program is distributed in the hope that it will be useful, - * but WITHOUT ANY WARRANTY; without even the implied warranty of - * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. + * THE SOFTWARE IS PROVIDED "AS IS" AND THE AUTHOR DISCLAIMS ALL WARRANTIES + * WITH REGARD TO THIS SOFTWARE INCLUDING ALL IMPLIED WARRANTIES OF + * MERCHANTABILITY AND FITNESS. IN NO EVENT SHALL THE AUTHOR BE LIABLE FOR ANY + * SPECIAL, DIRECT, INDIRECT, OR CONSEQUENTIAL DAMAGES OR ANY DAMAGES + * WHATSOEVER RESULTING FROM LOSS OF USE, DATA OR PROFITS, WHETHER IN AN ACTION + * OF CONTRACT, NEGLIGENCE OR OTHER TORTIOUS ACTION, ARISING OUT OF OR IN + * CONNECTION WITH THE USE OR PERFORMANCE OF THIS SOFTWARE. * - * In the event that this license restricts you from making desired use of this program, contact the original author. * Written by Justin James */ @@ -91,6 +92,11 @@ namespace Jupiter */ ArrayList(const ArrayList &); + /** + * @brief Move constructor for the ArrayList class. + */ + ArrayList(ArrayList &&); + /** * @brief Destructor for the ArrayList class. * Note: This does not delete data added to the list. @@ -139,8 +145,22 @@ template Jupiter::ArrayList::ArrayList(const Jupiter::ArrayList::dataSize = source.dataSize; Jupiter::ArrayList::data = new T*[Jupiter::ArrayList::dataSize]; + Jupiter::List::length = 0; + while (Jupiter::List::length != Jupiter::List::length) + { + Jupiter::ArrayList::data[Jupiter::List::length] = source.data[Jupiter::List::length]; + ++Jupiter::List::length; + } +} + +template Jupiter::ArrayList::ArrayList(ArrayList &&source) +{ + Jupiter::ArrayList::dataSize = source.dataSize; + Jupiter::ArrayList::data = source.data; Jupiter::List::length = source.length; - for (size_t i = 0; i < Jupiter::List::length; i++) Jupiter::ArrayList::data[i] = source.data[i]; + source.dataSize = Jupiter::ArrayList::start_size; + source.data = new T*[source.dataSize]; + source.length = 0; } template Jupiter::ArrayList::~ArrayList() diff --git a/Jupiter/Base64.cpp b/Jupiter/Base64.cpp index b6a8f67..49ead92 100644 --- a/Jupiter/Base64.cpp +++ b/Jupiter/Base64.cpp @@ -1,8 +1,18 @@ /** - * Copyright (C) Justin James - All Rights Reserved. - * Unauthorized use or copying of this file via any medium is strictly prohibited. - * This document is proprietary and confidential. - * This document should be immediately destroyed unless given explicit permission by Justin James. + * Copyright (C) 2014-2015 Justin James. + * + * Permission to use, copy, modify, and/or distribute this software for any + * purpose with or without fee is hereby granted, provided that the above + * copyright notice and this permission notice appear in all copies. + * + * THE SOFTWARE IS PROVIDED "AS IS" AND THE AUTHOR DISCLAIMS ALL WARRANTIES + * WITH REGARD TO THIS SOFTWARE INCLUDING ALL IMPLIED WARRANTIES OF + * MERCHANTABILITY AND FITNESS. IN NO EVENT SHALL THE AUTHOR BE LIABLE FOR ANY + * SPECIAL, DIRECT, INDIRECT, OR CONSEQUENTIAL DAMAGES OR ANY DAMAGES + * WHATSOEVER RESULTING FROM LOSS OF USE, DATA OR PROFITS, WHETHER IN AN ACTION + * OF CONTRACT, NEGLIGENCE OR OTHER TORTIOUS ACTION, ARISING OUT OF OR IN + * CONNECTION WITH THE USE OR PERFORMANCE OF THIS SOFTWARE. + * * Written by Justin James */ diff --git a/Jupiter/Base64.h b/Jupiter/Base64.h index 982abc5..437e028 100644 --- a/Jupiter/Base64.h +++ b/Jupiter/Base64.h @@ -1,17 +1,18 @@ /** * Copyright (C) 2014-2015 Justin James. * - * This license must be preserved. - * Any applications, libraries, or code which make any use of any - * component of this program must not be commercial, unless explicit - * permission is granted from the original author. The use of this - * program for non-profit purposes is permitted. + * Permission to use, copy, modify, and/or distribute this software for any + * purpose with or without fee is hereby granted, provided that the above + * copyright notice and this permission notice appear in all copies. * - * This program is distributed in the hope that it will be useful, - * but WITHOUT ANY WARRANTY; without even the implied warranty of - * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. + * THE SOFTWARE IS PROVIDED "AS IS" AND THE AUTHOR DISCLAIMS ALL WARRANTIES + * WITH REGARD TO THIS SOFTWARE INCLUDING ALL IMPLIED WARRANTIES OF + * MERCHANTABILITY AND FITNESS. IN NO EVENT SHALL THE AUTHOR BE LIABLE FOR ANY + * SPECIAL, DIRECT, INDIRECT, OR CONSEQUENTIAL DAMAGES OR ANY DAMAGES + * WHATSOEVER RESULTING FROM LOSS OF USE, DATA OR PROFITS, WHETHER IN AN ACTION + * OF CONTRACT, NEGLIGENCE OR OTHER TORTIOUS ACTION, ARISING OUT OF OR IN + * CONNECTION WITH THE USE OR PERFORMANCE OF THIS SOFTWARE. * - * In the event that this license restricts you from making desired use of this program, contact the original author. * Written by Justin James */ diff --git a/Jupiter/Base64C.c b/Jupiter/Base64C.c index abf6a0a..7449f1c 100644 --- a/Jupiter/Base64C.c +++ b/Jupiter/Base64C.c @@ -1,8 +1,18 @@ /** - * Copyright (C) Justin James - All Rights Reserved. - * Unauthorized use or copying of this file via any medium is strictly prohibited. - * This document is proprietary and confidential. - * This document should be immediately destroyed unless given explicit permission by Justin James. + * Copyright (C) 2014-2015 Justin James. + * + * Permission to use, copy, modify, and/or distribute this software for any + * purpose with or without fee is hereby granted, provided that the above + * copyright notice and this permission notice appear in all copies. + * + * THE SOFTWARE IS PROVIDED "AS IS" AND THE AUTHOR DISCLAIMS ALL WARRANTIES + * WITH REGARD TO THIS SOFTWARE INCLUDING ALL IMPLIED WARRANTIES OF + * MERCHANTABILITY AND FITNESS. IN NO EVENT SHALL THE AUTHOR BE LIABLE FOR ANY + * SPECIAL, DIRECT, INDIRECT, OR CONSEQUENTIAL DAMAGES OR ANY DAMAGES + * WHATSOEVER RESULTING FROM LOSS OF USE, DATA OR PROFITS, WHETHER IN AN ACTION + * OF CONTRACT, NEGLIGENCE OR OTHER TORTIOUS ACTION, ARISING OUT OF OR IN + * CONNECTION WITH THE USE OR PERFORMANCE OF THIS SOFTWARE. + * * Written by Justin James */ diff --git a/Jupiter/CString.h b/Jupiter/CString.h index f8ac7e1..9e333e9 100644 --- a/Jupiter/CString.h +++ b/Jupiter/CString.h @@ -1,17 +1,18 @@ /** * Copyright (C) 2013-2015 Justin James. * - * This license must be preserved. - * Any applications, libraries, or code which make any use of any - * component of this program must not be commercial, unless explicit - * permission is granted from the original author. The use of this - * program for non-profit purposes is permitted. + * Permission to use, copy, modify, and/or distribute this software for any + * purpose with or without fee is hereby granted, provided that the above + * copyright notice and this permission notice appear in all copies. * - * This program is distributed in the hope that it will be useful, - * but WITHOUT ANY WARRANTY; without even the implied warranty of - * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. + * THE SOFTWARE IS PROVIDED "AS IS" AND THE AUTHOR DISCLAIMS ALL WARRANTIES + * WITH REGARD TO THIS SOFTWARE INCLUDING ALL IMPLIED WARRANTIES OF + * MERCHANTABILITY AND FITNESS. IN NO EVENT SHALL THE AUTHOR BE LIABLE FOR ANY + * SPECIAL, DIRECT, INDIRECT, OR CONSEQUENTIAL DAMAGES OR ANY DAMAGES + * WHATSOEVER RESULTING FROM LOSS OF USE, DATA OR PROFITS, WHETHER IN AN ACTION + * OF CONTRACT, NEGLIGENCE OR OTHER TORTIOUS ACTION, ARISING OUT OF OR IN + * CONNECTION WITH THE USE OR PERFORMANCE OF THIS SOFTWARE. * - * In the event that this license restricts you from making desired use of this program, contact the original author. * Written by Justin James */ diff --git a/Jupiter/CString_Imp.h b/Jupiter/CString_Imp.h index fde7b5e..811be7f 100644 --- a/Jupiter/CString_Imp.h +++ b/Jupiter/CString_Imp.h @@ -1,17 +1,18 @@ /** * Copyright (C) 2013-2015 Justin James. * - * This license must be preserved. - * Any applications, libraries, or code which make any use of any - * component of this program must not be commercial, unless explicit - * permission is granted from the original author. The use of this - * program for non-profit purposes is permitted. + * Permission to use, copy, modify, and/or distribute this software for any + * purpose with or without fee is hereby granted, provided that the above + * copyright notice and this permission notice appear in all copies. * - * This program is distributed in the hope that it will be useful, - * but WITHOUT ANY WARRANTY; without even the implied warranty of - * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. + * THE SOFTWARE IS PROVIDED "AS IS" AND THE AUTHOR DISCLAIMS ALL WARRANTIES + * WITH REGARD TO THIS SOFTWARE INCLUDING ALL IMPLIED WARRANTIES OF + * MERCHANTABILITY AND FITNESS. IN NO EVENT SHALL THE AUTHOR BE LIABLE FOR ANY + * SPECIAL, DIRECT, INDIRECT, OR CONSEQUENTIAL DAMAGES OR ANY DAMAGES + * WHATSOEVER RESULTING FROM LOSS OF USE, DATA OR PROFITS, WHETHER IN AN ACTION + * OF CONTRACT, NEGLIGENCE OR OTHER TORTIOUS ACTION, ARISING OUT OF OR IN + * CONNECTION WITH THE USE OR PERFORMANCE OF THIS SOFTWARE. * - * In the event that this license restricts you from making desired use of this program, contact the original author. * Written by Justin James */ diff --git a/Jupiter/Command.cpp b/Jupiter/Command.cpp index e15ee1e..4c0c9b7 100644 --- a/Jupiter/Command.cpp +++ b/Jupiter/Command.cpp @@ -1,8 +1,18 @@ /** - * Copyright (C) Justin James - All Rights Reserved. - * Unauthorized use or copying of this file via any medium is strictly prohibited. - * This document is proprietary and confidential. - * This document should be immediately destroyed unless given explicit permission by Justin James. + * Copyright (C) 2013-2015 Justin James. + * + * Permission to use, copy, modify, and/or distribute this software for any + * purpose with or without fee is hereby granted, provided that the above + * copyright notice and this permission notice appear in all copies. + * + * THE SOFTWARE IS PROVIDED "AS IS" AND THE AUTHOR DISCLAIMS ALL WARRANTIES + * WITH REGARD TO THIS SOFTWARE INCLUDING ALL IMPLIED WARRANTIES OF + * MERCHANTABILITY AND FITNESS. IN NO EVENT SHALL THE AUTHOR BE LIABLE FOR ANY + * SPECIAL, DIRECT, INDIRECT, OR CONSEQUENTIAL DAMAGES OR ANY DAMAGES + * WHATSOEVER RESULTING FROM LOSS OF USE, DATA OR PROFITS, WHETHER IN AN ACTION + * OF CONTRACT, NEGLIGENCE OR OTHER TORTIOUS ACTION, ARISING OUT OF OR IN + * CONNECTION WITH THE USE OR PERFORMANCE OF THIS SOFTWARE. + * * Written by Justin James */ diff --git a/Jupiter/Command.h b/Jupiter/Command.h index 6c6c005..e8ed406 100644 --- a/Jupiter/Command.h +++ b/Jupiter/Command.h @@ -1,17 +1,18 @@ /** - * Copyright (C) 2013-2014 Justin James. + * Copyright (C) 2013-2015 Justin James. * - * This license must be preserved. - * Any applications, libraries, or code which make any use of any - * component of this program must not be commercial, unless explicit - * permission is granted from the original author. The use of this - * program for non-profit purposes is permitted. + * Permission to use, copy, modify, and/or distribute this software for any + * purpose with or without fee is hereby granted, provided that the above + * copyright notice and this permission notice appear in all copies. * - * This program is distributed in the hope that it will be useful, - * but WITHOUT ANY WARRANTY; without even the implied warranty of - * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. + * THE SOFTWARE IS PROVIDED "AS IS" AND THE AUTHOR DISCLAIMS ALL WARRANTIES + * WITH REGARD TO THIS SOFTWARE INCLUDING ALL IMPLIED WARRANTIES OF + * MERCHANTABILITY AND FITNESS. IN NO EVENT SHALL THE AUTHOR BE LIABLE FOR ANY + * SPECIAL, DIRECT, INDIRECT, OR CONSEQUENTIAL DAMAGES OR ANY DAMAGES + * WHATSOEVER RESULTING FROM LOSS OF USE, DATA OR PROFITS, WHETHER IN AN ACTION + * OF CONTRACT, NEGLIGENCE OR OTHER TORTIOUS ACTION, ARISING OUT OF OR IN + * CONNECTION WITH THE USE OR PERFORMANCE OF THIS SOFTWARE. * - * In the event that this license restricts you from making desired use of this program, contact the original author. * Written by Justin James */ diff --git a/Jupiter/DLList.h b/Jupiter/DLList.h index 561eea4..4ea9793 100644 --- a/Jupiter/DLList.h +++ b/Jupiter/DLList.h @@ -1,17 +1,18 @@ /** - * Copyright (C) 2013-2014 Justin James. + * Copyright (C) 2013-2015 Justin James. * - * This license must be preserved. - * Any applications, libraries, or code which make any use of any - * component of this program must not be commercial, unless explicit - * permission is granted from the original author. The use of this - * program for non-profit purposes is permitted. + * Permission to use, copy, modify, and/or distribute this software for any + * purpose with or without fee is hereby granted, provided that the above + * copyright notice and this permission notice appear in all copies. * - * This program is distributed in the hope that it will be useful, - * but WITHOUT ANY WARRANTY; without even the implied warranty of - * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. + * THE SOFTWARE IS PROVIDED "AS IS" AND THE AUTHOR DISCLAIMS ALL WARRANTIES + * WITH REGARD TO THIS SOFTWARE INCLUDING ALL IMPLIED WARRANTIES OF + * MERCHANTABILITY AND FITNESS. IN NO EVENT SHALL THE AUTHOR BE LIABLE FOR ANY + * SPECIAL, DIRECT, INDIRECT, OR CONSEQUENTIAL DAMAGES OR ANY DAMAGES + * WHATSOEVER RESULTING FROM LOSS OF USE, DATA OR PROFITS, WHETHER IN AN ACTION + * OF CONTRACT, NEGLIGENCE OR OTHER TORTIOUS ACTION, ARISING OUT OF OR IN + * CONNECTION WITH THE USE OR PERFORMANCE OF THIS SOFTWARE. * - * In the event that this license restricts you from making desired use of this program, contact the original author. * Written by Justin James */ diff --git a/Jupiter/DataBuffer.cpp b/Jupiter/DataBuffer.cpp index f696be0..23eebe8 100644 --- a/Jupiter/DataBuffer.cpp +++ b/Jupiter/DataBuffer.cpp @@ -1,8 +1,18 @@ /** - * Copyright (C) Justin James - All Rights Reserved. - * Unauthorized use or copying of this file via any medium is strictly prohibited. - * This document is proprietary and confidential. - * This document should be immediately destroyed unless given explicit permission by Justin James. + * Copyright (C) 2015 Justin James. + * + * Permission to use, copy, modify, and/or distribute this software for any + * purpose with or without fee is hereby granted, provided that the above + * copyright notice and this permission notice appear in all copies. + * + * THE SOFTWARE IS PROVIDED "AS IS" AND THE AUTHOR DISCLAIMS ALL WARRANTIES + * WITH REGARD TO THIS SOFTWARE INCLUDING ALL IMPLIED WARRANTIES OF + * MERCHANTABILITY AND FITNESS. IN NO EVENT SHALL THE AUTHOR BE LIABLE FOR ANY + * SPECIAL, DIRECT, INDIRECT, OR CONSEQUENTIAL DAMAGES OR ANY DAMAGES + * WHATSOEVER RESULTING FROM LOSS OF USE, DATA OR PROFITS, WHETHER IN AN ACTION + * OF CONTRACT, NEGLIGENCE OR OTHER TORTIOUS ACTION, ARISING OUT OF OR IN + * CONNECTION WITH THE USE OR PERFORMANCE OF THIS SOFTWARE. + * * Written by Justin James */ diff --git a/Jupiter/DataBuffer.h b/Jupiter/DataBuffer.h index 9fdb087..773ae2e 100644 --- a/Jupiter/DataBuffer.h +++ b/Jupiter/DataBuffer.h @@ -1,17 +1,18 @@ /** * Copyright (C) 2015 Justin James. * - * This license must be preserved. - * Any applications, libraries, or code which make any use of any - * component of this program must not be commercial, unless explicit - * permission is granted from the original author. The use of this - * program for non-profit purposes is permitted. + * Permission to use, copy, modify, and/or distribute this software for any + * purpose with or without fee is hereby granted, provided that the above + * copyright notice and this permission notice appear in all copies. * - * This program is distributed in the hope that it will be useful, - * but WITHOUT ANY WARRANTY; without even the implied warranty of - * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. + * THE SOFTWARE IS PROVIDED "AS IS" AND THE AUTHOR DISCLAIMS ALL WARRANTIES + * WITH REGARD TO THIS SOFTWARE INCLUDING ALL IMPLIED WARRANTIES OF + * MERCHANTABILITY AND FITNESS. IN NO EVENT SHALL THE AUTHOR BE LIABLE FOR ANY + * SPECIAL, DIRECT, INDIRECT, OR CONSEQUENTIAL DAMAGES OR ANY DAMAGES + * WHATSOEVER RESULTING FROM LOSS OF USE, DATA OR PROFITS, WHETHER IN AN ACTION + * OF CONTRACT, NEGLIGENCE OR OTHER TORTIOUS ACTION, ARISING OUT OF OR IN + * CONNECTION WITH THE USE OR PERFORMANCE OF THIS SOFTWARE. * - * In the event that this license restricts you from making desired use of this program, contact the original author. * Written by Justin James */ diff --git a/Jupiter/DataBuffer_Imp.h b/Jupiter/DataBuffer_Imp.h index ab67f1a..26fdd3d 100644 --- a/Jupiter/DataBuffer_Imp.h +++ b/Jupiter/DataBuffer_Imp.h @@ -1,17 +1,18 @@ /** * Copyright (C) 2015 Justin James. * - * This license must be preserved. - * Any applications, libraries, or code which make any use of any - * component of this program must not be commercial, unless explicit - * permission is granted from the original author. The use of this - * program for non-profit purposes is permitted. + * Permission to use, copy, modify, and/or distribute this software for any + * purpose with or without fee is hereby granted, provided that the above + * copyright notice and this permission notice appear in all copies. * - * This program is distributed in the hope that it will be useful, - * but WITHOUT ANY WARRANTY; without even the implied warranty of - * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. + * THE SOFTWARE IS PROVIDED "AS IS" AND THE AUTHOR DISCLAIMS ALL WARRANTIES + * WITH REGARD TO THIS SOFTWARE INCLUDING ALL IMPLIED WARRANTIES OF + * MERCHANTABILITY AND FITNESS. IN NO EVENT SHALL THE AUTHOR BE LIABLE FOR ANY + * SPECIAL, DIRECT, INDIRECT, OR CONSEQUENTIAL DAMAGES OR ANY DAMAGES + * WHATSOEVER RESULTING FROM LOSS OF USE, DATA OR PROFITS, WHETHER IN AN ACTION + * OF CONTRACT, NEGLIGENCE OR OTHER TORTIOUS ACTION, ARISING OUT OF OR IN + * CONNECTION WITH THE USE OR PERFORMANCE OF THIS SOFTWARE. * - * In the event that this license restricts you from making desired use of this program, contact the original author. * Written by Justin James */ diff --git a/Jupiter/Database.cpp b/Jupiter/Database.cpp index f95bdb5..337ae36 100644 --- a/Jupiter/Database.cpp +++ b/Jupiter/Database.cpp @@ -1,8 +1,18 @@ /** - * Copyright (C) Justin James - All Rights Reserved. - * Unauthorized use or copying of this file via any medium is strictly prohibited. - * This document is proprietary and confidential. - * This document should be immediately destroyed unless given explicit permission by Justin James. + * Copyright (C) 2015 Justin James. + * + * Permission to use, copy, modify, and/or distribute this software for any + * purpose with or without fee is hereby granted, provided that the above + * copyright notice and this permission notice appear in all copies. + * + * THE SOFTWARE IS PROVIDED "AS IS" AND THE AUTHOR DISCLAIMS ALL WARRANTIES + * WITH REGARD TO THIS SOFTWARE INCLUDING ALL IMPLIED WARRANTIES OF + * MERCHANTABILITY AND FITNESS. IN NO EVENT SHALL THE AUTHOR BE LIABLE FOR ANY + * SPECIAL, DIRECT, INDIRECT, OR CONSEQUENTIAL DAMAGES OR ANY DAMAGES + * WHATSOEVER RESULTING FROM LOSS OF USE, DATA OR PROFITS, WHETHER IN AN ACTION + * OF CONTRACT, NEGLIGENCE OR OTHER TORTIOUS ACTION, ARISING OUT OF OR IN + * CONNECTION WITH THE USE OR PERFORMANCE OF THIS SOFTWARE. + * * Written by Justin James */ diff --git a/Jupiter/Database.h b/Jupiter/Database.h index e3f9c66..5ff29fb 100644 --- a/Jupiter/Database.h +++ b/Jupiter/Database.h @@ -1,17 +1,18 @@ /** * Copyright (C) 2015 Justin James. * - * This license must be preserved. - * Any applications, libraries, or code which make any use of any - * component of this program must not be commercial, unless explicit - * permission is granted from the original author. The use of this - * program for non-profit purposes is permitted. + * Permission to use, copy, modify, and/or distribute this software for any + * purpose with or without fee is hereby granted, provided that the above + * copyright notice and this permission notice appear in all copies. * - * This program is distributed in the hope that it will be useful, - * but WITHOUT ANY WARRANTY; without even the implied warranty of - * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. + * THE SOFTWARE IS PROVIDED "AS IS" AND THE AUTHOR DISCLAIMS ALL WARRANTIES + * WITH REGARD TO THIS SOFTWARE INCLUDING ALL IMPLIED WARRANTIES OF + * MERCHANTABILITY AND FITNESS. IN NO EVENT SHALL THE AUTHOR BE LIABLE FOR ANY + * SPECIAL, DIRECT, INDIRECT, OR CONSEQUENTIAL DAMAGES OR ANY DAMAGES + * WHATSOEVER RESULTING FROM LOSS OF USE, DATA OR PROFITS, WHETHER IN AN ACTION + * OF CONTRACT, NEGLIGENCE OR OTHER TORTIOUS ACTION, ARISING OUT OF OR IN + * CONNECTION WITH THE USE OR PERFORMANCE OF THIS SOFTWARE. * - * In the event that this license restricts you from making desired use of this program, contact the original author. * Written by Justin James */ diff --git a/Jupiter/File.cpp b/Jupiter/File.cpp index e946f52..bc64de4 100644 --- a/Jupiter/File.cpp +++ b/Jupiter/File.cpp @@ -1,8 +1,18 @@ /** - * Copyright (C) Justin James - All Rights Reserved. - * Unauthorized use or copying of this file via any medium is strictly prohibited. - * This document is proprietary and confidential. - * This document should be immediately destroyed unless given explicit permission by Justin James. + * Copyright (C) 2014-2015 Justin James. + * + * Permission to use, copy, modify, and/or distribute this software for any + * purpose with or without fee is hereby granted, provided that the above + * copyright notice and this permission notice appear in all copies. + * + * THE SOFTWARE IS PROVIDED "AS IS" AND THE AUTHOR DISCLAIMS ALL WARRANTIES + * WITH REGARD TO THIS SOFTWARE INCLUDING ALL IMPLIED WARRANTIES OF + * MERCHANTABILITY AND FITNESS. IN NO EVENT SHALL THE AUTHOR BE LIABLE FOR ANY + * SPECIAL, DIRECT, INDIRECT, OR CONSEQUENTIAL DAMAGES OR ANY DAMAGES + * WHATSOEVER RESULTING FROM LOSS OF USE, DATA OR PROFITS, WHETHER IN AN ACTION + * OF CONTRACT, NEGLIGENCE OR OTHER TORTIOUS ACTION, ARISING OUT OF OR IN + * CONNECTION WITH THE USE OR PERFORMANCE OF THIS SOFTWARE. + * * Written by Justin James */ diff --git a/Jupiter/File.h b/Jupiter/File.h index 50e9851..1f62b9f 100644 --- a/Jupiter/File.h +++ b/Jupiter/File.h @@ -1,17 +1,18 @@ /** - * Copyright (C) 2014 Justin James. + * Copyright (C) 2014-2015 Justin James. * - * This license must be preserved. - * Any applications, libraries, or code which make any use of any - * component of this program must not be commercial, unless explicit - * permission is granted from the original author. The use of this - * program for non-profit purposes is permitted. + * Permission to use, copy, modify, and/or distribute this software for any + * purpose with or without fee is hereby granted, provided that the above + * copyright notice and this permission notice appear in all copies. * - * This program is distributed in the hope that it will be useful, - * but WITHOUT ANY WARRANTY; without even the implied warranty of - * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. + * THE SOFTWARE IS PROVIDED "AS IS" AND THE AUTHOR DISCLAIMS ALL WARRANTIES + * WITH REGARD TO THIS SOFTWARE INCLUDING ALL IMPLIED WARRANTIES OF + * MERCHANTABILITY AND FITNESS. IN NO EVENT SHALL THE AUTHOR BE LIABLE FOR ANY + * SPECIAL, DIRECT, INDIRECT, OR CONSEQUENTIAL DAMAGES OR ANY DAMAGES + * WHATSOEVER RESULTING FROM LOSS OF USE, DATA OR PROFITS, WHETHER IN AN ACTION + * OF CONTRACT, NEGLIGENCE OR OTHER TORTIOUS ACTION, ARISING OUT OF OR IN + * CONNECTION WITH THE USE OR PERFORMANCE OF THIS SOFTWARE. * - * In the event that this license restricts you from making desired use of this program, contact the original author. * Written by Justin James */ diff --git a/Jupiter/Functions.c b/Jupiter/Functions.c index db679b8..208f18b 100644 --- a/Jupiter/Functions.c +++ b/Jupiter/Functions.c @@ -1,8 +1,18 @@ /** - * Copyright (C) Justin James - All Rights Reserved. - * Unauthorized use or copying of this file via any medium is strictly prohibited. - * This document is proprietary and confidential. - * This document should be immediately destroyed unless given explicit permission by Justin James. + * Copyright (C) 2013-2015 Justin James. + * + * Permission to use, copy, modify, and/or distribute this software for any + * purpose with or without fee is hereby granted, provided that the above + * copyright notice and this permission notice appear in all copies. + * + * THE SOFTWARE IS PROVIDED "AS IS" AND THE AUTHOR DISCLAIMS ALL WARRANTIES + * WITH REGARD TO THIS SOFTWARE INCLUDING ALL IMPLIED WARRANTIES OF + * MERCHANTABILITY AND FITNESS. IN NO EVENT SHALL THE AUTHOR BE LIABLE FOR ANY + * SPECIAL, DIRECT, INDIRECT, OR CONSEQUENTIAL DAMAGES OR ANY DAMAGES + * WHATSOEVER RESULTING FROM LOSS OF USE, DATA OR PROFITS, WHETHER IN AN ACTION + * OF CONTRACT, NEGLIGENCE OR OTHER TORTIOUS ACTION, ARISING OUT OF OR IN + * CONNECTION WITH THE USE OR PERFORMANCE OF THIS SOFTWARE. + * * Written by Justin James */ diff --git a/Jupiter/Functions.h b/Jupiter/Functions.h index 8edfc56..d94073f 100644 --- a/Jupiter/Functions.h +++ b/Jupiter/Functions.h @@ -1,17 +1,18 @@ /** - * Copyright (C) 2013-2014 Justin James. + * Copyright (C) 2013-2015 Justin James. * - * This license must be preserved. - * Any applications, libraries, or code which make any use of any - * component of this program must not be commercial, unless explicit - * permission is granted from the original author. The use of this - * program for non-profit purposes is permitted. + * Permission to use, copy, modify, and/or distribute this software for any + * purpose with or without fee is hereby granted, provided that the above + * copyright notice and this permission notice appear in all copies. * - * This program is distributed in the hope that it will be useful, - * but WITHOUT ANY WARRANTY; without even the implied warranty of - * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. + * THE SOFTWARE IS PROVIDED "AS IS" AND THE AUTHOR DISCLAIMS ALL WARRANTIES + * WITH REGARD TO THIS SOFTWARE INCLUDING ALL IMPLIED WARRANTIES OF + * MERCHANTABILITY AND FITNESS. IN NO EVENT SHALL THE AUTHOR BE LIABLE FOR ANY + * SPECIAL, DIRECT, INDIRECT, OR CONSEQUENTIAL DAMAGES OR ANY DAMAGES + * WHATSOEVER RESULTING FROM LOSS OF USE, DATA OR PROFITS, WHETHER IN AN ACTION + * OF CONTRACT, NEGLIGENCE OR OTHER TORTIOUS ACTION, ARISING OUT OF OR IN + * CONNECTION WITH THE USE OR PERFORMANCE OF THIS SOFTWARE. * - * In the event that this license restricts you from making desired use of this program, contact the original author. * Written by Justin James */ diff --git a/Jupiter/INIFile.cpp b/Jupiter/INIFile.cpp index 6b8ca7b..c6ce0ac 100644 --- a/Jupiter/INIFile.cpp +++ b/Jupiter/INIFile.cpp @@ -1,8 +1,18 @@ /** - * Copyright (C) Justin James - All Rights Reserved. - * Unauthorized use or copying of this file via any medium is strictly prohibited. - * This document is proprietary and confidential. - * This document should be immediately destroyed unless given explicit permission by Justin James. + * Copyright (C) 2013-2015 Justin James. + * + * Permission to use, copy, modify, and/or distribute this software for any + * purpose with or without fee is hereby granted, provided that the above + * copyright notice and this permission notice appear in all copies. + * + * THE SOFTWARE IS PROVIDED "AS IS" AND THE AUTHOR DISCLAIMS ALL WARRANTIES + * WITH REGARD TO THIS SOFTWARE INCLUDING ALL IMPLIED WARRANTIES OF + * MERCHANTABILITY AND FITNESS. IN NO EVENT SHALL THE AUTHOR BE LIABLE FOR ANY + * SPECIAL, DIRECT, INDIRECT, OR CONSEQUENTIAL DAMAGES OR ANY DAMAGES + * WHATSOEVER RESULTING FROM LOSS OF USE, DATA OR PROFITS, WHETHER IN AN ACTION + * OF CONTRACT, NEGLIGENCE OR OTHER TORTIOUS ACTION, ARISING OUT OF OR IN + * CONNECTION WITH THE USE OR PERFORMANCE OF THIS SOFTWARE. + * * Written by Justin James */ diff --git a/Jupiter/INIFile.h b/Jupiter/INIFile.h index a4cacd9..45419cc 100644 --- a/Jupiter/INIFile.h +++ b/Jupiter/INIFile.h @@ -1,17 +1,18 @@ /** - * Copyright (C) 2013-2014 Justin James. + * Copyright (C) 2013-2015 Justin James. * - * This license must be preserved. - * Any applications, libraries, or code which make any use of any - * component of this program must not be commercial, unless explicit - * permission is granted from the original author. The use of this - * program for non-profit purposes is permitted. + * Permission to use, copy, modify, and/or distribute this software for any + * purpose with or without fee is hereby granted, provided that the above + * copyright notice and this permission notice appear in all copies. * - * This program is distributed in the hope that it will be useful, - * but WITHOUT ANY WARRANTY; without even the implied warranty of - * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. + * THE SOFTWARE IS PROVIDED "AS IS" AND THE AUTHOR DISCLAIMS ALL WARRANTIES + * WITH REGARD TO THIS SOFTWARE INCLUDING ALL IMPLIED WARRANTIES OF + * MERCHANTABILITY AND FITNESS. IN NO EVENT SHALL THE AUTHOR BE LIABLE FOR ANY + * SPECIAL, DIRECT, INDIRECT, OR CONSEQUENTIAL DAMAGES OR ANY DAMAGES + * WHATSOEVER RESULTING FROM LOSS OF USE, DATA OR PROFITS, WHETHER IN AN ACTION + * OF CONTRACT, NEGLIGENCE OR OTHER TORTIOUS ACTION, ARISING OUT OF OR IN + * CONNECTION WITH THE USE OR PERFORMANCE OF THIS SOFTWARE. * - * In the event that this license restricts you from making desired use of this program, contact the original author. * Written by Justin James */ diff --git a/Jupiter/IRC.cpp b/Jupiter/IRC.cpp index e446734..19e3858 100644 --- a/Jupiter/IRC.cpp +++ b/Jupiter/IRC.cpp @@ -1,8 +1,18 @@ /** - * Copyright (C) Justin James - All Rights Reserved. - * Unauthorized use or copying of this file via any medium is strictly prohibited. - * This document is proprietary and confidential. - * This document should be immediately destroyed unless given explicit permission by Justin James. + * Copyright (C) 2013-2015 Justin James. + * + * Permission to use, copy, modify, and/or distribute this software for any + * purpose with or without fee is hereby granted, provided that the above + * copyright notice and this permission notice appear in all copies. + * + * THE SOFTWARE IS PROVIDED "AS IS" AND THE AUTHOR DISCLAIMS ALL WARRANTIES + * WITH REGARD TO THIS SOFTWARE INCLUDING ALL IMPLIED WARRANTIES OF + * MERCHANTABILITY AND FITNESS. IN NO EVENT SHALL THE AUTHOR BE LIABLE FOR ANY + * SPECIAL, DIRECT, INDIRECT, OR CONSEQUENTIAL DAMAGES OR ANY DAMAGES + * WHATSOEVER RESULTING FROM LOSS OF USE, DATA OR PROFITS, WHETHER IN AN ACTION + * OF CONTRACT, NEGLIGENCE OR OTHER TORTIOUS ACTION, ARISING OUT OF OR IN + * CONNECTION WITH THE USE OR PERFORMANCE OF THIS SOFTWARE. + * * Written by Justin James */ diff --git a/Jupiter/IRC.h b/Jupiter/IRC.h index 1b4517b..37f7a46 100644 --- a/Jupiter/IRC.h +++ b/Jupiter/IRC.h @@ -1,17 +1,18 @@ /** * Copyright (C) 2013-2015 Justin James. * - * This license must be preserved. - * Any applications, libraries, or code which make any use of any - * component of this program must not be commercial, unless explicit - * permission is granted from the original author. The use of this - * program for non-profit purposes is permitted. + * Permission to use, copy, modify, and/or distribute this software for any + * purpose with or without fee is hereby granted, provided that the above + * copyright notice and this permission notice appear in all copies. * - * This program is distributed in the hope that it will be useful, - * but WITHOUT ANY WARRANTY; without even the implied warranty of - * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. + * THE SOFTWARE IS PROVIDED "AS IS" AND THE AUTHOR DISCLAIMS ALL WARRANTIES + * WITH REGARD TO THIS SOFTWARE INCLUDING ALL IMPLIED WARRANTIES OF + * MERCHANTABILITY AND FITNESS. IN NO EVENT SHALL THE AUTHOR BE LIABLE FOR ANY + * SPECIAL, DIRECT, INDIRECT, OR CONSEQUENTIAL DAMAGES OR ANY DAMAGES + * WHATSOEVER RESULTING FROM LOSS OF USE, DATA OR PROFITS, WHETHER IN AN ACTION + * OF CONTRACT, NEGLIGENCE OR OTHER TORTIOUS ACTION, ARISING OUT OF OR IN + * CONNECTION WITH THE USE OR PERFORMANCE OF THIS SOFTWARE. * - * In the event that this license restricts you from making desired use of this program, contact the original author. * Written by Justin James */ diff --git a/Jupiter/IRC_Client.cpp b/Jupiter/IRC_Client.cpp index 6f281b1..c536076 100644 --- a/Jupiter/IRC_Client.cpp +++ b/Jupiter/IRC_Client.cpp @@ -1,8 +1,18 @@ /** - * Copyright (C) Justin James - All Rights Reserved. - * Unauthorized use or copying of this file via any medium is strictly prohibited. - * This document is proprietary and confidential. - * This document should be immediately destroyed unless given explicit permission by Justin James. + * Copyright (C) 2013-2015 Justin James. + * + * Permission to use, copy, modify, and/or distribute this software for any + * purpose with or without fee is hereby granted, provided that the above + * copyright notice and this permission notice appear in all copies. + * + * THE SOFTWARE IS PROVIDED "AS IS" AND THE AUTHOR DISCLAIMS ALL WARRANTIES + * WITH REGARD TO THIS SOFTWARE INCLUDING ALL IMPLIED WARRANTIES OF + * MERCHANTABILITY AND FITNESS. IN NO EVENT SHALL THE AUTHOR BE LIABLE FOR ANY + * SPECIAL, DIRECT, INDIRECT, OR CONSEQUENTIAL DAMAGES OR ANY DAMAGES + * WHATSOEVER RESULTING FROM LOSS OF USE, DATA OR PROFITS, WHETHER IN AN ACTION + * OF CONTRACT, NEGLIGENCE OR OTHER TORTIOUS ACTION, ARISING OUT OF OR IN + * CONNECTION WITH THE USE OR PERFORMANCE OF THIS SOFTWARE. + * * Written by Justin James */ diff --git a/Jupiter/IRC_Client.h b/Jupiter/IRC_Client.h index e1b8856..3564459 100644 --- a/Jupiter/IRC_Client.h +++ b/Jupiter/IRC_Client.h @@ -1,17 +1,18 @@ /** - * Copyright (C) 2013-2014 Justin James. + * Copyright (C) 2013-2015 Justin James. * - * This license must be preserved. - * Any applications, libraries, or code which make any use of any - * component of this program must not be commercial, unless explicit - * permission is granted from the original author. The use of this - * program for non-profit purposes is permitted. + * Permission to use, copy, modify, and/or distribute this software for any + * purpose with or without fee is hereby granted, provided that the above + * copyright notice and this permission notice appear in all copies. * - * This program is distributed in the hope that it will be useful, - * but WITHOUT ANY WARRANTY; without even the implied warranty of - * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. + * THE SOFTWARE IS PROVIDED "AS IS" AND THE AUTHOR DISCLAIMS ALL WARRANTIES + * WITH REGARD TO THIS SOFTWARE INCLUDING ALL IMPLIED WARRANTIES OF + * MERCHANTABILITY AND FITNESS. IN NO EVENT SHALL THE AUTHOR BE LIABLE FOR ANY + * SPECIAL, DIRECT, INDIRECT, OR CONSEQUENTIAL DAMAGES OR ANY DAMAGES + * WHATSOEVER RESULTING FROM LOSS OF USE, DATA OR PROFITS, WHETHER IN AN ACTION + * OF CONTRACT, NEGLIGENCE OR OTHER TORTIOUS ACTION, ARISING OUT OF OR IN + * CONNECTION WITH THE USE OR PERFORMANCE OF THIS SOFTWARE. * - * In the event that this license restricts you from making desired use of this program, contact the original author. * Written by Justin James */ diff --git a/Jupiter/IRC_Numerics.h b/Jupiter/IRC_Numerics.h index c5af7d3..6c598bb 100644 --- a/Jupiter/IRC_Numerics.h +++ b/Jupiter/IRC_Numerics.h @@ -1,17 +1,18 @@ /** - * Copyright (C) 2013-2014 Justin James. + * Copyright (C) 2013-2015 Justin James. * - * This license must be preserved. - * Any applications, libraries, or code which make any use of any - * component of this program must not be commercial, unless explicit - * permission is granted from the original author. The use of this - * program for non-profit purposes is permitted. + * Permission to use, copy, modify, and/or distribute this software for any + * purpose with or without fee is hereby granted, provided that the above + * copyright notice and this permission notice appear in all copies. * - * This program is distributed in the hope that it will be useful, - * but WITHOUT ANY WARRANTY; without even the implied warranty of - * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. + * THE SOFTWARE IS PROVIDED "AS IS" AND THE AUTHOR DISCLAIMS ALL WARRANTIES + * WITH REGARD TO THIS SOFTWARE INCLUDING ALL IMPLIED WARRANTIES OF + * MERCHANTABILITY AND FITNESS. IN NO EVENT SHALL THE AUTHOR BE LIABLE FOR ANY + * SPECIAL, DIRECT, INDIRECT, OR CONSEQUENTIAL DAMAGES OR ANY DAMAGES + * WHATSOEVER RESULTING FROM LOSS OF USE, DATA OR PROFITS, WHETHER IN AN ACTION + * OF CONTRACT, NEGLIGENCE OR OTHER TORTIOUS ACTION, ARISING OUT OF OR IN + * CONNECTION WITH THE USE OR PERFORMANCE OF THIS SOFTWARE. * - * In the event that this license restricts you from making desired use of this program, contact the original author. * Written by Justin James */ diff --git a/Jupiter/IRC_Server.cpp b/Jupiter/IRC_Server.cpp index ba4a2f0..cfcd6ad 100644 --- a/Jupiter/IRC_Server.cpp +++ b/Jupiter/IRC_Server.cpp @@ -1,8 +1,18 @@ /** - * Copyright (C) Justin James - All Rights Reserved. - * Unauthorized use or copying of this file via any medium is strictly prohibited. - * This document is proprietary and confidential. - * This document should be immediately destroyed unless given explicit permission by Justin James. + * Copyright (C) 2014-2015 Justin James. + * + * Permission to use, copy, modify, and/or distribute this software for any + * purpose with or without fee is hereby granted, provided that the above + * copyright notice and this permission notice appear in all copies. + * + * THE SOFTWARE IS PROVIDED "AS IS" AND THE AUTHOR DISCLAIMS ALL WARRANTIES + * WITH REGARD TO THIS SOFTWARE INCLUDING ALL IMPLIED WARRANTIES OF + * MERCHANTABILITY AND FITNESS. IN NO EVENT SHALL THE AUTHOR BE LIABLE FOR ANY + * SPECIAL, DIRECT, INDIRECT, OR CONSEQUENTIAL DAMAGES OR ANY DAMAGES + * WHATSOEVER RESULTING FROM LOSS OF USE, DATA OR PROFITS, WHETHER IN AN ACTION + * OF CONTRACT, NEGLIGENCE OR OTHER TORTIOUS ACTION, ARISING OUT OF OR IN + * CONNECTION WITH THE USE OR PERFORMANCE OF THIS SOFTWARE. + * * Written by Justin James */ diff --git a/Jupiter/IRC_Server.h b/Jupiter/IRC_Server.h index 9e39b04..1cc69ca 100644 --- a/Jupiter/IRC_Server.h +++ b/Jupiter/IRC_Server.h @@ -1,8 +1,18 @@ /** - * Copyright (C) Justin James - All Rights Reserved. - * Unauthorized use or copying of this file via any medium is strictly prohibited. - * This document is proprietary and confidential. - * This document should be immediately destroyed unless given explicit permission by Justin James. + * Copyright (C) 2014-2015 Justin James. + * + * Permission to use, copy, modify, and/or distribute this software for any + * purpose with or without fee is hereby granted, provided that the above + * copyright notice and this permission notice appear in all copies. + * + * THE SOFTWARE IS PROVIDED "AS IS" AND THE AUTHOR DISCLAIMS ALL WARRANTIES + * WITH REGARD TO THIS SOFTWARE INCLUDING ALL IMPLIED WARRANTIES OF + * MERCHANTABILITY AND FITNESS. IN NO EVENT SHALL THE AUTHOR BE LIABLE FOR ANY + * SPECIAL, DIRECT, INDIRECT, OR CONSEQUENTIAL DAMAGES OR ANY DAMAGES + * WHATSOEVER RESULTING FROM LOSS OF USE, DATA OR PROFITS, WHETHER IN AN ACTION + * OF CONTRACT, NEGLIGENCE OR OTHER TORTIOUS ACTION, ARISING OUT OF OR IN + * CONNECTION WITH THE USE OR PERFORMANCE OF THIS SOFTWARE. + * * Written by Justin James */ diff --git a/Jupiter/InvalidIndex.h b/Jupiter/InvalidIndex.h index b139015..5753425 100644 --- a/Jupiter/InvalidIndex.h +++ b/Jupiter/InvalidIndex.h @@ -1,17 +1,18 @@ /** - * Copyright (C) 2014 Justin James. + * Copyright (C) 2014-2015 Justin James. * - * This license must be preserved. - * Any applications, libraries, or code which make any use of any - * component of this program must not be commercial, unless explicit - * permission is granted from the original author. The use of this - * program for non-profit purposes is permitted. + * Permission to use, copy, modify, and/or distribute this software for any + * purpose with or without fee is hereby granted, provided that the above + * copyright notice and this permission notice appear in all copies. * - * This program is distributed in the hope that it will be useful, - * but WITHOUT ANY WARRANTY; without even the implied warranty of - * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. + * THE SOFTWARE IS PROVIDED "AS IS" AND THE AUTHOR DISCLAIMS ALL WARRANTIES + * WITH REGARD TO THIS SOFTWARE INCLUDING ALL IMPLIED WARRANTIES OF + * MERCHANTABILITY AND FITNESS. IN NO EVENT SHALL THE AUTHOR BE LIABLE FOR ANY + * SPECIAL, DIRECT, INDIRECT, OR CONSEQUENTIAL DAMAGES OR ANY DAMAGES + * WHATSOEVER RESULTING FROM LOSS OF USE, DATA OR PROFITS, WHETHER IN AN ACTION + * OF CONTRACT, NEGLIGENCE OR OTHER TORTIOUS ACTION, ARISING OUT OF OR IN + * CONNECTION WITH THE USE OR PERFORMANCE OF THIS SOFTWARE. * - * In the event that this license restricts you from making desired use of this program, contact the original author. * Written by Justin James */ diff --git a/Jupiter/Jupiter.cpp b/Jupiter/Jupiter.cpp index 69b86e9..a4dfb72 100644 --- a/Jupiter/Jupiter.cpp +++ b/Jupiter/Jupiter.cpp @@ -1,8 +1,18 @@ /** - * Copyright (C) Justin James - All Rights Reserved. - * Unauthorized use or copying of this file via any medium is strictly prohibited. - * This document is proprietary and confidential. - * This document should be immediately destroyed unless given explicit permission by Justin James. + * Copyright (C) 2013-2015 Justin James. + * + * Permission to use, copy, modify, and/or distribute this software for any + * purpose with or without fee is hereby granted, provided that the above + * copyright notice and this permission notice appear in all copies. + * + * THE SOFTWARE IS PROVIDED "AS IS" AND THE AUTHOR DISCLAIMS ALL WARRANTIES + * WITH REGARD TO THIS SOFTWARE INCLUDING ALL IMPLIED WARRANTIES OF + * MERCHANTABILITY AND FITNESS. IN NO EVENT SHALL THE AUTHOR BE LIABLE FOR ANY + * SPECIAL, DIRECT, INDIRECT, OR CONSEQUENTIAL DAMAGES OR ANY DAMAGES + * WHATSOEVER RESULTING FROM LOSS OF USE, DATA OR PROFITS, WHETHER IN AN ACTION + * OF CONTRACT, NEGLIGENCE OR OTHER TORTIOUS ACTION, ARISING OUT OF OR IN + * CONNECTION WITH THE USE OR PERFORMANCE OF THIS SOFTWARE. + * * Written by Justin James */ @@ -11,7 +21,7 @@ extern "C" { const char *Jupiter_version = JUPITER_VERSION; - const char *Jupiter_copyright = "Copyright (C) 2013-2015 Justin James - All Rights Reserved."; + const char *Jupiter_copyright = "Copyright (C) 2013-2015 Justin James. ISC License."; } const char *Jupiter::version = Jupiter_version; diff --git a/Jupiter/Jupiter.h b/Jupiter/Jupiter.h index 474c2b7..c26e58c 100644 --- a/Jupiter/Jupiter.h +++ b/Jupiter/Jupiter.h @@ -1,17 +1,18 @@ /** * Copyright (C) 2013-2015 Justin James. * - * This license must be preserved. - * Any applications, libraries, or code which make any use of any - * component of this program must not be commercial, unless explicit - * permission is granted from the original author. The use of this - * program for non-profit purposes is permitted. + * Permission to use, copy, modify, and/or distribute this software for any + * purpose with or without fee is hereby granted, provided that the above + * copyright notice and this permission notice appear in all copies. * - * This program is distributed in the hope that it will be useful, - * but WITHOUT ANY WARRANTY; without even the implied warranty of - * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. + * THE SOFTWARE IS PROVIDED "AS IS" AND THE AUTHOR DISCLAIMS ALL WARRANTIES + * WITH REGARD TO THIS SOFTWARE INCLUDING ALL IMPLIED WARRANTIES OF + * MERCHANTABILITY AND FITNESS. IN NO EVENT SHALL THE AUTHOR BE LIABLE FOR ANY + * SPECIAL, DIRECT, INDIRECT, OR CONSEQUENTIAL DAMAGES OR ANY DAMAGES + * WHATSOEVER RESULTING FROM LOSS OF USE, DATA OR PROFITS, WHETHER IN AN ACTION + * OF CONTRACT, NEGLIGENCE OR OTHER TORTIOUS ACTION, ARISING OUT OF OR IN + * CONNECTION WITH THE USE OR PERFORMANCE OF THIS SOFTWARE. * - * In the event that this license restricts you from making desired use of this program, contact the original author. * Written by Justin James */ diff --git a/Jupiter/Jupiter.rc b/Jupiter/Jupiter.rc index f68fcaf..276381b 100644 Binary files a/Jupiter/Jupiter.rc and b/Jupiter/Jupiter.rc differ diff --git a/Jupiter/List.h b/Jupiter/List.h index ab0fbaf..94e3926 100644 --- a/Jupiter/List.h +++ b/Jupiter/List.h @@ -1,17 +1,18 @@ /** * Copyright (C) 2013-2015 Justin James. * - * This license must be preserved. - * Any applications, libraries, or code which make any use of any - * component of this program must not be commercial, unless explicit - * permission is granted from the original author. The use of this - * program for non-profit purposes is permitted. + * Permission to use, copy, modify, and/or distribute this software for any + * purpose with or without fee is hereby granted, provided that the above + * copyright notice and this permission notice appear in all copies. * - * This program is distributed in the hope that it will be useful, - * but WITHOUT ANY WARRANTY; without even the implied warranty of - * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. + * THE SOFTWARE IS PROVIDED "AS IS" AND THE AUTHOR DISCLAIMS ALL WARRANTIES + * WITH REGARD TO THIS SOFTWARE INCLUDING ALL IMPLIED WARRANTIES OF + * MERCHANTABILITY AND FITNESS. IN NO EVENT SHALL THE AUTHOR BE LIABLE FOR ANY + * SPECIAL, DIRECT, INDIRECT, OR CONSEQUENTIAL DAMAGES OR ANY DAMAGES + * WHATSOEVER RESULTING FROM LOSS OF USE, DATA OR PROFITS, WHETHER IN AN ACTION + * OF CONTRACT, NEGLIGENCE OR OTHER TORTIOUS ACTION, ARISING OUT OF OR IN + * CONNECTION WITH THE USE OR PERFORMANCE OF THIS SOFTWARE. * - * In the event that this license restricts you from making desired use of this program, contact the original author. * Written by Justin James */ diff --git a/Jupiter/Plugin.cpp b/Jupiter/Plugin.cpp index 3eecb75..13121c0 100644 --- a/Jupiter/Plugin.cpp +++ b/Jupiter/Plugin.cpp @@ -1,8 +1,18 @@ /** - * Copyright (C) 2014 Justin James - All Rights Reserved. - * Unauthorized use or copying of this file via any medium is strictly prohibited. - * This document is proprietary and confidential. - * This document should be immediately destroyed unless given explicit permission by Justin James. + * Copyright (C) 2014-2015 Justin James. + * + * Permission to use, copy, modify, and/or distribute this software for any + * purpose with or without fee is hereby granted, provided that the above + * copyright notice and this permission notice appear in all copies. + * + * THE SOFTWARE IS PROVIDED "AS IS" AND THE AUTHOR DISCLAIMS ALL WARRANTIES + * WITH REGARD TO THIS SOFTWARE INCLUDING ALL IMPLIED WARRANTIES OF + * MERCHANTABILITY AND FITNESS. IN NO EVENT SHALL THE AUTHOR BE LIABLE FOR ANY + * SPECIAL, DIRECT, INDIRECT, OR CONSEQUENTIAL DAMAGES OR ANY DAMAGES + * WHATSOEVER RESULTING FROM LOSS OF USE, DATA OR PROFITS, WHETHER IN AN ACTION + * OF CONTRACT, NEGLIGENCE OR OTHER TORTIOUS ACTION, ARISING OUT OF OR IN + * CONNECTION WITH THE USE OR PERFORMANCE OF THIS SOFTWARE. + * * Written by Justin James */ diff --git a/Jupiter/Plugin.h b/Jupiter/Plugin.h index b4e3083..c0aec58 100644 --- a/Jupiter/Plugin.h +++ b/Jupiter/Plugin.h @@ -1,17 +1,18 @@ /** - * Copyright (C) 2014 Justin James. + * Copyright (C) 2014-2015 Justin James. * - * This license must be preserved. - * Any applications, libraries, or code which make any use of any - * component of this program must not be commercial, unless explicit - * permission is granted from the original author. The use of this - * program for non-profit purposes is permitted. + * Permission to use, copy, modify, and/or distribute this software for any + * purpose with or without fee is hereby granted, provided that the above + * copyright notice and this permission notice appear in all copies. * - * This program is distributed in the hope that it will be useful, - * but WITHOUT ANY WARRANTY; without even the implied warranty of - * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. + * THE SOFTWARE IS PROVIDED "AS IS" AND THE AUTHOR DISCLAIMS ALL WARRANTIES + * WITH REGARD TO THIS SOFTWARE INCLUDING ALL IMPLIED WARRANTIES OF + * MERCHANTABILITY AND FITNESS. IN NO EVENT SHALL THE AUTHOR BE LIABLE FOR ANY + * SPECIAL, DIRECT, INDIRECT, OR CONSEQUENTIAL DAMAGES OR ANY DAMAGES + * WHATSOEVER RESULTING FROM LOSS OF USE, DATA OR PROFITS, WHETHER IN AN ACTION + * OF CONTRACT, NEGLIGENCE OR OTHER TORTIOUS ACTION, ARISING OUT OF OR IN + * CONNECTION WITH THE USE OR PERFORMANCE OF THIS SOFTWARE. * - * In the event that this license restricts you from making desired use of this program, contact the original author. * Written by Justin James */ diff --git a/Jupiter/Queue.cpp b/Jupiter/Queue.cpp index 0f3b0e0..ec1425e 100644 --- a/Jupiter/Queue.cpp +++ b/Jupiter/Queue.cpp @@ -1,8 +1,18 @@ /** - * Copyright (C) Justin James - All Rights Reserved. - * Unauthorized use or copying of this file via any medium is strictly prohibited. - * This document is proprietary and confidential. - * This document should be immediately destroyed unless given explicit permission by Justin James. + * Copyright (C) 2013-2015 Justin James. + * + * Permission to use, copy, modify, and/or distribute this software for any + * purpose with or without fee is hereby granted, provided that the above + * copyright notice and this permission notice appear in all copies. + * + * THE SOFTWARE IS PROVIDED "AS IS" AND THE AUTHOR DISCLAIMS ALL WARRANTIES + * WITH REGARD TO THIS SOFTWARE INCLUDING ALL IMPLIED WARRANTIES OF + * MERCHANTABILITY AND FITNESS. IN NO EVENT SHALL THE AUTHOR BE LIABLE FOR ANY + * SPECIAL, DIRECT, INDIRECT, OR CONSEQUENTIAL DAMAGES OR ANY DAMAGES + * WHATSOEVER RESULTING FROM LOSS OF USE, DATA OR PROFITS, WHETHER IN AN ACTION + * OF CONTRACT, NEGLIGENCE OR OTHER TORTIOUS ACTION, ARISING OUT OF OR IN + * CONNECTION WITH THE USE OR PERFORMANCE OF THIS SOFTWARE. + * * Written by Justin James */ diff --git a/Jupiter/Queue.h b/Jupiter/Queue.h index 7a9f29e..04df1be 100644 --- a/Jupiter/Queue.h +++ b/Jupiter/Queue.h @@ -1,17 +1,18 @@ /** - * Copyright (C) 2013-2014 Justin James. + * Copyright (C) 2013-2015 Justin James. * - * This license must be preserved. - * Any applications, libraries, or code which make any use of any - * component of this program must not be commercial, unless explicit - * permission is granted from the original author. The use of this - * program for non-profit purposes is permitted. + * Permission to use, copy, modify, and/or distribute this software for any + * purpose with or without fee is hereby granted, provided that the above + * copyright notice and this permission notice appear in all copies. * - * This program is distributed in the hope that it will be useful, - * but WITHOUT ANY WARRANTY; without even the implied warranty of - * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. + * THE SOFTWARE IS PROVIDED "AS IS" AND THE AUTHOR DISCLAIMS ALL WARRANTIES + * WITH REGARD TO THIS SOFTWARE INCLUDING ALL IMPLIED WARRANTIES OF + * MERCHANTABILITY AND FITNESS. IN NO EVENT SHALL THE AUTHOR BE LIABLE FOR ANY + * SPECIAL, DIRECT, INDIRECT, OR CONSEQUENTIAL DAMAGES OR ANY DAMAGES + * WHATSOEVER RESULTING FROM LOSS OF USE, DATA OR PROFITS, WHETHER IN AN ACTION + * OF CONTRACT, NEGLIGENCE OR OTHER TORTIOUS ACTION, ARISING OUT OF OR IN + * CONNECTION WITH THE USE OR PERFORMANCE OF THIS SOFTWARE. * - * In the event that this license restricts you from making desired use of this program, contact the original author. * Written by Justin James */ diff --git a/Jupiter/Readable_String.h b/Jupiter/Readable_String.h index 34d49cb..08a6ede 100644 --- a/Jupiter/Readable_String.h +++ b/Jupiter/Readable_String.h @@ -1,17 +1,18 @@ /** * Copyright (C) 2014-2015 Justin James. * - * This license must be preserved. - * Any applications, libraries, or code which make any use of any - * component of this program must not be commercial, unless explicit - * permission is granted from the original author. The use of this - * program for non-profit purposes is permitted. + * Permission to use, copy, modify, and/or distribute this software for any + * purpose with or without fee is hereby granted, provided that the above + * copyright notice and this permission notice appear in all copies. * - * This program is distributed in the hope that it will be useful, - * but WITHOUT ANY WARRANTY; without even the implied warranty of - * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. + * THE SOFTWARE IS PROVIDED "AS IS" AND THE AUTHOR DISCLAIMS ALL WARRANTIES + * WITH REGARD TO THIS SOFTWARE INCLUDING ALL IMPLIED WARRANTIES OF + * MERCHANTABILITY AND FITNESS. IN NO EVENT SHALL THE AUTHOR BE LIABLE FOR ANY + * SPECIAL, DIRECT, INDIRECT, OR CONSEQUENTIAL DAMAGES OR ANY DAMAGES + * WHATSOEVER RESULTING FROM LOSS OF USE, DATA OR PROFITS, WHETHER IN AN ACTION + * OF CONTRACT, NEGLIGENCE OR OTHER TORTIOUS ACTION, ARISING OUT OF OR IN + * CONNECTION WITH THE USE OR PERFORMANCE OF THIS SOFTWARE. * - * In the event that this license restricts you from making desired use of this program, contact the original author. * Written by Justin James */ diff --git a/Jupiter/Readable_String_Imp.h b/Jupiter/Readable_String_Imp.h index 601f44f..c16a34c 100644 --- a/Jupiter/Readable_String_Imp.h +++ b/Jupiter/Readable_String_Imp.h @@ -1,17 +1,18 @@ /** * Copyright (C) 2014-2015 Justin James. * - * This license must be preserved. - * Any applications, libraries, or code which make any use of any - * component of this program must not be commercial, unless explicit - * permission is granted from the original author. The use of this - * program for non-profit purposes is permitted. + * Permission to use, copy, modify, and/or distribute this software for any + * purpose with or without fee is hereby granted, provided that the above + * copyright notice and this permission notice appear in all copies. * - * This program is distributed in the hope that it will be useful, - * but WITHOUT ANY WARRANTY; without even the implied warranty of - * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. + * THE SOFTWARE IS PROVIDED "AS IS" AND THE AUTHOR DISCLAIMS ALL WARRANTIES + * WITH REGARD TO THIS SOFTWARE INCLUDING ALL IMPLIED WARRANTIES OF + * MERCHANTABILITY AND FITNESS. IN NO EVENT SHALL THE AUTHOR BE LIABLE FOR ANY + * SPECIAL, DIRECT, INDIRECT, OR CONSEQUENTIAL DAMAGES OR ANY DAMAGES + * WHATSOEVER RESULTING FROM LOSS OF USE, DATA OR PROFITS, WHETHER IN AN ACTION + * OF CONTRACT, NEGLIGENCE OR OTHER TORTIOUS ACTION, ARISING OUT OF OR IN + * CONNECTION WITH THE USE OR PERFORMANCE OF THIS SOFTWARE. * - * In the event that this license restricts you from making desired use of this program, contact the original author. * Written by Justin James */ diff --git a/Jupiter/Reference_String.h b/Jupiter/Reference_String.h index 1a499d3..5b99fa0 100644 --- a/Jupiter/Reference_String.h +++ b/Jupiter/Reference_String.h @@ -1,17 +1,18 @@ /** * Copyright (C) 2014-2015 Justin James. * - * This license must be preserved. - * Any applications, libraries, or code which make any use of any - * component of this program must not be commercial, unless explicit - * permission is granted from the original author. The use of this - * program for non-profit purposes is permitted. + * Permission to use, copy, modify, and/or distribute this software for any + * purpose with or without fee is hereby granted, provided that the above + * copyright notice and this permission notice appear in all copies. * - * This program is distributed in the hope that it will be useful, - * but WITHOUT ANY WARRANTY; without even the implied warranty of - * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. + * THE SOFTWARE IS PROVIDED "AS IS" AND THE AUTHOR DISCLAIMS ALL WARRANTIES + * WITH REGARD TO THIS SOFTWARE INCLUDING ALL IMPLIED WARRANTIES OF + * MERCHANTABILITY AND FITNESS. IN NO EVENT SHALL THE AUTHOR BE LIABLE FOR ANY + * SPECIAL, DIRECT, INDIRECT, OR CONSEQUENTIAL DAMAGES OR ANY DAMAGES + * WHATSOEVER RESULTING FROM LOSS OF USE, DATA OR PROFITS, WHETHER IN AN ACTION + * OF CONTRACT, NEGLIGENCE OR OTHER TORTIOUS ACTION, ARISING OUT OF OR IN + * CONNECTION WITH THE USE OR PERFORMANCE OF THIS SOFTWARE. * - * In the event that this license restricts you from making desired use of this program, contact the original author. * Written by Justin James */ diff --git a/Jupiter/Reference_String_Imp.h b/Jupiter/Reference_String_Imp.h index acf910e..ff0478e 100644 --- a/Jupiter/Reference_String_Imp.h +++ b/Jupiter/Reference_String_Imp.h @@ -1,17 +1,18 @@ /** * Copyright (C) 2014-2015 Justin James. * - * This license must be preserved. - * Any applications, libraries, or code which make any use of any - * component of this program must not be commercial, unless explicit - * permission is granted from the original author. The use of this - * program for non-profit purposes is permitted. + * Permission to use, copy, modify, and/or distribute this software for any + * purpose with or without fee is hereby granted, provided that the above + * copyright notice and this permission notice appear in all copies. * - * This program is distributed in the hope that it will be useful, - * but WITHOUT ANY WARRANTY; without even the implied warranty of - * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. + * THE SOFTWARE IS PROVIDED "AS IS" AND THE AUTHOR DISCLAIMS ALL WARRANTIES + * WITH REGARD TO THIS SOFTWARE INCLUDING ALL IMPLIED WARRANTIES OF + * MERCHANTABILITY AND FITNESS. IN NO EVENT SHALL THE AUTHOR BE LIABLE FOR ANY + * SPECIAL, DIRECT, INDIRECT, OR CONSEQUENTIAL DAMAGES OR ANY DAMAGES + * WHATSOEVER RESULTING FROM LOSS OF USE, DATA OR PROFITS, WHETHER IN AN ACTION + * OF CONTRACT, NEGLIGENCE OR OTHER TORTIOUS ACTION, ARISING OUT OF OR IN + * CONNECTION WITH THE USE OR PERFORMANCE OF THIS SOFTWARE. * - * In the event that this license restricts you from making desired use of this program, contact the original author. * Written by Justin James */ diff --git a/Jupiter/Rehash.cpp b/Jupiter/Rehash.cpp index dbc2c46..1df403b 100644 --- a/Jupiter/Rehash.cpp +++ b/Jupiter/Rehash.cpp @@ -1,8 +1,18 @@ /** - * Copyright (C) Justin James - All Rights Reserved. - * Unauthorized use or copying of this file via any medium is strictly prohibited. - * This document is proprietary and confidential. - * This document should be immediately destroyed unless given explicit permission by Justin James. + * Copyright (C) 2014-2015 Justin James. + * + * Permission to use, copy, modify, and/or distribute this software for any + * purpose with or without fee is hereby granted, provided that the above + * copyright notice and this permission notice appear in all copies. + * + * THE SOFTWARE IS PROVIDED "AS IS" AND THE AUTHOR DISCLAIMS ALL WARRANTIES + * WITH REGARD TO THIS SOFTWARE INCLUDING ALL IMPLIED WARRANTIES OF + * MERCHANTABILITY AND FITNESS. IN NO EVENT SHALL THE AUTHOR BE LIABLE FOR ANY + * SPECIAL, DIRECT, INDIRECT, OR CONSEQUENTIAL DAMAGES OR ANY DAMAGES + * WHATSOEVER RESULTING FROM LOSS OF USE, DATA OR PROFITS, WHETHER IN AN ACTION + * OF CONTRACT, NEGLIGENCE OR OTHER TORTIOUS ACTION, ARISING OUT OF OR IN + * CONNECTION WITH THE USE OR PERFORMANCE OF THIS SOFTWARE. + * * Written by Justin James */ diff --git a/Jupiter/Rehash.h b/Jupiter/Rehash.h index 7254c75..8162962 100644 --- a/Jupiter/Rehash.h +++ b/Jupiter/Rehash.h @@ -1,17 +1,18 @@ /** - * Copyright (C) 2014 Justin James. + * Copyright (C) 2014-2015 Justin James. * - * This license must be preserved. - * Any applications, libraries, or code which make any use of any - * component of this program must not be commercial, unless explicit - * permission is granted from the original author. The use of this - * program for non-profit purposes is permitted. + * Permission to use, copy, modify, and/or distribute this software for any + * purpose with or without fee is hereby granted, provided that the above + * copyright notice and this permission notice appear in all copies. * - * This program is distributed in the hope that it will be useful, - * but WITHOUT ANY WARRANTY; without even the implied warranty of - * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. + * THE SOFTWARE IS PROVIDED "AS IS" AND THE AUTHOR DISCLAIMS ALL WARRANTIES + * WITH REGARD TO THIS SOFTWARE INCLUDING ALL IMPLIED WARRANTIES OF + * MERCHANTABILITY AND FITNESS. IN NO EVENT SHALL THE AUTHOR BE LIABLE FOR ANY + * SPECIAL, DIRECT, INDIRECT, OR CONSEQUENTIAL DAMAGES OR ANY DAMAGES + * WHATSOEVER RESULTING FROM LOSS OF USE, DATA OR PROFITS, WHETHER IN AN ACTION + * OF CONTRACT, NEGLIGENCE OR OTHER TORTIOUS ACTION, ARISING OUT OF OR IN + * CONNECTION WITH THE USE OR PERFORMANCE OF THIS SOFTWARE. * - * In the event that this license restricts you from making desired use of this program, contact the original author. * Written by Justin James */ diff --git a/Jupiter/SLList.h b/Jupiter/SLList.h index e9beb46..6ad1955 100644 --- a/Jupiter/SLList.h +++ b/Jupiter/SLList.h @@ -1,17 +1,18 @@ /** * Copyright (C) 2013-2015 Justin James. * - * This license must be preserved. - * Any applications, libraries, or code which make any use of any - * component of this program must not be commercial, unless explicit - * permission is granted from the original author. The use of this - * program for non-profit purposes is permitted. + * Permission to use, copy, modify, and/or distribute this software for any + * purpose with or without fee is hereby granted, provided that the above + * copyright notice and this permission notice appear in all copies. * - * This program is distributed in the hope that it will be useful, - * but WITHOUT ANY WARRANTY; without even the implied warranty of - * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. + * THE SOFTWARE IS PROVIDED "AS IS" AND THE AUTHOR DISCLAIMS ALL WARRANTIES + * WITH REGARD TO THIS SOFTWARE INCLUDING ALL IMPLIED WARRANTIES OF + * MERCHANTABILITY AND FITNESS. IN NO EVENT SHALL THE AUTHOR BE LIABLE FOR ANY + * SPECIAL, DIRECT, INDIRECT, OR CONSEQUENTIAL DAMAGES OR ANY DAMAGES + * WHATSOEVER RESULTING FROM LOSS OF USE, DATA OR PROFITS, WHETHER IN AN ACTION + * OF CONTRACT, NEGLIGENCE OR OTHER TORTIOUS ACTION, ARISING OUT OF OR IN + * CONNECTION WITH THE USE OR PERFORMANCE OF THIS SOFTWARE. * - * In the event that this license restricts you from making desired use of this program, contact the original author. * Written by Justin James */ diff --git a/Jupiter/SecureSocket.cpp b/Jupiter/SecureSocket.cpp index 0d10f93..a8d5bf3 100644 --- a/Jupiter/SecureSocket.cpp +++ b/Jupiter/SecureSocket.cpp @@ -1,8 +1,18 @@ /** - * Copyright (C) Justin James - All Rights Reserved. - * Unauthorized use or copying of this file via any medium is strictly prohibited. - * This document is proprietary and confidential. - * This document should be immediately destroyed unless given explicit permission by Justin James. + * Copyright (C) 2013-2015 Justin James. + * + * Permission to use, copy, modify, and/or distribute this software for any + * purpose with or without fee is hereby granted, provided that the above + * copyright notice and this permission notice appear in all copies. + * + * THE SOFTWARE IS PROVIDED "AS IS" AND THE AUTHOR DISCLAIMS ALL WARRANTIES + * WITH REGARD TO THIS SOFTWARE INCLUDING ALL IMPLIED WARRANTIES OF + * MERCHANTABILITY AND FITNESS. IN NO EVENT SHALL THE AUTHOR BE LIABLE FOR ANY + * SPECIAL, DIRECT, INDIRECT, OR CONSEQUENTIAL DAMAGES OR ANY DAMAGES + * WHATSOEVER RESULTING FROM LOSS OF USE, DATA OR PROFITS, WHETHER IN AN ACTION + * OF CONTRACT, NEGLIGENCE OR OTHER TORTIOUS ACTION, ARISING OUT OF OR IN + * CONNECTION WITH THE USE OR PERFORMANCE OF THIS SOFTWARE. + * * Written by Justin James */ diff --git a/Jupiter/SecureSocket.h b/Jupiter/SecureSocket.h index d65d5a3..d829616 100644 --- a/Jupiter/SecureSocket.h +++ b/Jupiter/SecureSocket.h @@ -1,17 +1,18 @@ /** * Copyright (C) 2013-2015 Justin James. * - * This license must be preserved. - * Any applications, libraries, or code which make any use of any - * component of this program must not be commercial, unless explicit - * permission is granted from the original author. The use of this - * program for non-profit purposes is permitted. + * Permission to use, copy, modify, and/or distribute this software for any + * purpose with or without fee is hereby granted, provided that the above + * copyright notice and this permission notice appear in all copies. * - * This program is distributed in the hope that it will be useful, - * but WITHOUT ANY WARRANTY; without even the implied warranty of - * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. + * THE SOFTWARE IS PROVIDED "AS IS" AND THE AUTHOR DISCLAIMS ALL WARRANTIES + * WITH REGARD TO THIS SOFTWARE INCLUDING ALL IMPLIED WARRANTIES OF + * MERCHANTABILITY AND FITNESS. IN NO EVENT SHALL THE AUTHOR BE LIABLE FOR ANY + * SPECIAL, DIRECT, INDIRECT, OR CONSEQUENTIAL DAMAGES OR ANY DAMAGES + * WHATSOEVER RESULTING FROM LOSS OF USE, DATA OR PROFITS, WHETHER IN AN ACTION + * OF CONTRACT, NEGLIGENCE OR OTHER TORTIOUS ACTION, ARISING OUT OF OR IN + * CONNECTION WITH THE USE OR PERFORMANCE OF THIS SOFTWARE. * - * In the event that this license restricts you from making desired use of this program, contact the original author. * Written by Justin James */ diff --git a/Jupiter/Shift_String.h b/Jupiter/Shift_String.h index ad42af6..cb83010 100644 --- a/Jupiter/Shift_String.h +++ b/Jupiter/Shift_String.h @@ -1,17 +1,18 @@ /** - * Copyright (C) 2014 Justin James. + * Copyright (C) 2014-2015 Justin James. * - * This license must be preserved. - * Any applications, libraries, or code which make any use of any - * component of this program must not be commercial, unless explicit - * permission is granted from the original author. The use of this - * program for non-profit purposes is permitted. + * Permission to use, copy, modify, and/or distribute this software for any + * purpose with or without fee is hereby granted, provided that the above + * copyright notice and this permission notice appear in all copies. * - * This program is distributed in the hope that it will be useful, - * but WITHOUT ANY WARRANTY; without even the implied warranty of - * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. + * THE SOFTWARE IS PROVIDED "AS IS" AND THE AUTHOR DISCLAIMS ALL WARRANTIES + * WITH REGARD TO THIS SOFTWARE INCLUDING ALL IMPLIED WARRANTIES OF + * MERCHANTABILITY AND FITNESS. IN NO EVENT SHALL THE AUTHOR BE LIABLE FOR ANY + * SPECIAL, DIRECT, INDIRECT, OR CONSEQUENTIAL DAMAGES OR ANY DAMAGES + * WHATSOEVER RESULTING FROM LOSS OF USE, DATA OR PROFITS, WHETHER IN AN ACTION + * OF CONTRACT, NEGLIGENCE OR OTHER TORTIOUS ACTION, ARISING OUT OF OR IN + * CONNECTION WITH THE USE OR PERFORMANCE OF THIS SOFTWARE. * - * In the event that this license restricts you from making desired use of this program, contact the original author. * Written by Justin James */ diff --git a/Jupiter/Shift_String_Imp.h b/Jupiter/Shift_String_Imp.h index f2fd40a..85e43fa 100644 --- a/Jupiter/Shift_String_Imp.h +++ b/Jupiter/Shift_String_Imp.h @@ -1,17 +1,18 @@ /** * Copyright (C) 2014-2015 Justin James. * - * This license must be preserved. - * Any applications, libraries, or code which make any use of any - * component of this program must not be commercial, unless explicit - * permission is granted from the original author. The use of this - * program for non-profit purposes is permitted. + * Permission to use, copy, modify, and/or distribute this software for any + * purpose with or without fee is hereby granted, provided that the above + * copyright notice and this permission notice appear in all copies. * - * This program is distributed in the hope that it will be useful, - * but WITHOUT ANY WARRANTY; without even the implied warranty of - * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. + * THE SOFTWARE IS PROVIDED "AS IS" AND THE AUTHOR DISCLAIMS ALL WARRANTIES + * WITH REGARD TO THIS SOFTWARE INCLUDING ALL IMPLIED WARRANTIES OF + * MERCHANTABILITY AND FITNESS. IN NO EVENT SHALL THE AUTHOR BE LIABLE FOR ANY + * SPECIAL, DIRECT, INDIRECT, OR CONSEQUENTIAL DAMAGES OR ANY DAMAGES + * WHATSOEVER RESULTING FROM LOSS OF USE, DATA OR PROFITS, WHETHER IN AN ACTION + * OF CONTRACT, NEGLIGENCE OR OTHER TORTIOUS ACTION, ARISING OUT OF OR IN + * CONNECTION WITH THE USE OR PERFORMANCE OF THIS SOFTWARE. * - * In the event that this license restricts you from making desired use of this program, contact the original author. * Written by Justin James */ diff --git a/Jupiter/Socket.cpp b/Jupiter/Socket.cpp index fd4ed03..c5c964b 100644 --- a/Jupiter/Socket.cpp +++ b/Jupiter/Socket.cpp @@ -1,8 +1,18 @@ /** - * Copyright (C) Justin James - All Rights Reserved. - * Unauthorized use or copying of this file via any medium is strictly prohibited. - * This document is proprietary and confidential. - * This document should be immediately destroyed unless given explicit permission by Justin James. + * Copyright (C) 2013-2015 Justin James. + * + * Permission to use, copy, modify, and/or distribute this software for any + * purpose with or without fee is hereby granted, provided that the above + * copyright notice and this permission notice appear in all copies. + * + * THE SOFTWARE IS PROVIDED "AS IS" AND THE AUTHOR DISCLAIMS ALL WARRANTIES + * WITH REGARD TO THIS SOFTWARE INCLUDING ALL IMPLIED WARRANTIES OF + * MERCHANTABILITY AND FITNESS. IN NO EVENT SHALL THE AUTHOR BE LIABLE FOR ANY + * SPECIAL, DIRECT, INDIRECT, OR CONSEQUENTIAL DAMAGES OR ANY DAMAGES + * WHATSOEVER RESULTING FROM LOSS OF USE, DATA OR PROFITS, WHETHER IN AN ACTION + * OF CONTRACT, NEGLIGENCE OR OTHER TORTIOUS ACTION, ARISING OUT OF OR IN + * CONNECTION WITH THE USE OR PERFORMANCE OF THIS SOFTWARE. + * * Written by Justin James */ diff --git a/Jupiter/Socket.h b/Jupiter/Socket.h index 620f902..bd69fdf 100644 --- a/Jupiter/Socket.h +++ b/Jupiter/Socket.h @@ -1,17 +1,18 @@ /** * Copyright (C) 2013-2015 Justin James. * - * This license must be preserved. - * Any applications, libraries, or code which make any use of any - * component of this program must not be commercial, unless explicit - * permission is granted from the original author. The use of this - * program for non-profit purposes is permitted. + * Permission to use, copy, modify, and/or distribute this software for any + * purpose with or without fee is hereby granted, provided that the above + * copyright notice and this permission notice appear in all copies. * - * This program is distributed in the hope that it will be useful, - * but WITHOUT ANY WARRANTY; without even the implied warranty of - * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. + * THE SOFTWARE IS PROVIDED "AS IS" AND THE AUTHOR DISCLAIMS ALL WARRANTIES + * WITH REGARD TO THIS SOFTWARE INCLUDING ALL IMPLIED WARRANTIES OF + * MERCHANTABILITY AND FITNESS. IN NO EVENT SHALL THE AUTHOR BE LIABLE FOR ANY + * SPECIAL, DIRECT, INDIRECT, OR CONSEQUENTIAL DAMAGES OR ANY DAMAGES + * WHATSOEVER RESULTING FROM LOSS OF USE, DATA OR PROFITS, WHETHER IN AN ACTION + * OF CONTRACT, NEGLIGENCE OR OTHER TORTIOUS ACTION, ARISING OUT OF OR IN + * CONNECTION WITH THE USE OR PERFORMANCE OF THIS SOFTWARE. * - * In the event that this license restricts you from making desired use of this program, contact the original author. * Written by Justin James */ diff --git a/Jupiter/String.h b/Jupiter/String.h index 36ed693..4fddd48 100644 --- a/Jupiter/String.h +++ b/Jupiter/String.h @@ -1,17 +1,18 @@ /** * Copyright (C) 2013-2015 Justin James. * - * This license must be preserved. - * Any applications, libraries, or code which make any use of any - * component of this program must not be commercial, unless explicit - * permission is granted from the original author. The use of this - * program for non-profit purposes is permitted. + * Permission to use, copy, modify, and/or distribute this software for any + * purpose with or without fee is hereby granted, provided that the above + * copyright notice and this permission notice appear in all copies. * - * This program is distributed in the hope that it will be useful, - * but WITHOUT ANY WARRANTY; without even the implied warranty of - * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. + * THE SOFTWARE IS PROVIDED "AS IS" AND THE AUTHOR DISCLAIMS ALL WARRANTIES + * WITH REGARD TO THIS SOFTWARE INCLUDING ALL IMPLIED WARRANTIES OF + * MERCHANTABILITY AND FITNESS. IN NO EVENT SHALL THE AUTHOR BE LIABLE FOR ANY + * SPECIAL, DIRECT, INDIRECT, OR CONSEQUENTIAL DAMAGES OR ANY DAMAGES + * WHATSOEVER RESULTING FROM LOSS OF USE, DATA OR PROFITS, WHETHER IN AN ACTION + * OF CONTRACT, NEGLIGENCE OR OTHER TORTIOUS ACTION, ARISING OUT OF OR IN + * CONNECTION WITH THE USE OR PERFORMANCE OF THIS SOFTWARE. * - * In the event that this license restricts you from making desired use of this program, contact the original author. * Written by Justin James */ diff --git a/Jupiter/String_Imp.h b/Jupiter/String_Imp.h index 495df7d..f763018 100644 --- a/Jupiter/String_Imp.h +++ b/Jupiter/String_Imp.h @@ -1,17 +1,18 @@ /** * Copyright (C) 2013-2015 Justin James. * - * This license must be preserved. - * Any applications, libraries, or code which make any use of any - * component of this program must not be commercial, unless explicit - * permission is granted from the original author. The use of this - * program for non-profit purposes is permitted. + * Permission to use, copy, modify, and/or distribute this software for any + * purpose with or without fee is hereby granted, provided that the above + * copyright notice and this permission notice appear in all copies. * - * This program is distributed in the hope that it will be useful, - * but WITHOUT ANY WARRANTY; without even the implied warranty of - * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. + * THE SOFTWARE IS PROVIDED "AS IS" AND THE AUTHOR DISCLAIMS ALL WARRANTIES + * WITH REGARD TO THIS SOFTWARE INCLUDING ALL IMPLIED WARRANTIES OF + * MERCHANTABILITY AND FITNESS. IN NO EVENT SHALL THE AUTHOR BE LIABLE FOR ANY + * SPECIAL, DIRECT, INDIRECT, OR CONSEQUENTIAL DAMAGES OR ANY DAMAGES + * WHATSOEVER RESULTING FROM LOSS OF USE, DATA OR PROFITS, WHETHER IN AN ACTION + * OF CONTRACT, NEGLIGENCE OR OTHER TORTIOUS ACTION, ARISING OUT OF OR IN + * CONNECTION WITH THE USE OR PERFORMANCE OF THIS SOFTWARE. * - * In the event that this license restricts you from making desired use of this program, contact the original author. * Written by Justin James */ diff --git a/Jupiter/String_Type.h b/Jupiter/String_Type.h index 3cd343c..1d619a3 100644 --- a/Jupiter/String_Type.h +++ b/Jupiter/String_Type.h @@ -1,17 +1,18 @@ /** * Copyright (C) 2013-2015 Justin James. * - * This license must be preserved. - * Any applications, libraries, or code which make any use of any - * component of this program must not be commercial, unless explicit - * permission is granted from the original author. The use of this - * program for non-profit purposes is permitted. + * Permission to use, copy, modify, and/or distribute this software for any + * purpose with or without fee is hereby granted, provided that the above + * copyright notice and this permission notice appear in all copies. * - * This program is distributed in the hope that it will be useful, - * but WITHOUT ANY WARRANTY; without even the implied warranty of - * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. + * THE SOFTWARE IS PROVIDED "AS IS" AND THE AUTHOR DISCLAIMS ALL WARRANTIES + * WITH REGARD TO THIS SOFTWARE INCLUDING ALL IMPLIED WARRANTIES OF + * MERCHANTABILITY AND FITNESS. IN NO EVENT SHALL THE AUTHOR BE LIABLE FOR ANY + * SPECIAL, DIRECT, INDIRECT, OR CONSEQUENTIAL DAMAGES OR ANY DAMAGES + * WHATSOEVER RESULTING FROM LOSS OF USE, DATA OR PROFITS, WHETHER IN AN ACTION + * OF CONTRACT, NEGLIGENCE OR OTHER TORTIOUS ACTION, ARISING OUT OF OR IN + * CONNECTION WITH THE USE OR PERFORMANCE OF THIS SOFTWARE. * - * In the event that this license restricts you from making desired use of this program, contact the original author. * Written by Justin James */ diff --git a/Jupiter/String_Type_Imp.h b/Jupiter/String_Type_Imp.h index 13efd55..7b62a9f 100644 --- a/Jupiter/String_Type_Imp.h +++ b/Jupiter/String_Type_Imp.h @@ -1,17 +1,18 @@ /** * Copyright (C) 2014-2015 Justin James. * - * This license must be preserved. - * Any applications, libraries, or code which make any use of any - * component of this program must not be commercial, unless explicit - * permission is granted from the original author. The use of this - * program for non-profit purposes is permitted. + * Permission to use, copy, modify, and/or distribute this software for any + * purpose with or without fee is hereby granted, provided that the above + * copyright notice and this permission notice appear in all copies. * - * This program is distributed in the hope that it will be useful, - * but WITHOUT ANY WARRANTY; without even the implied warranty of - * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. + * THE SOFTWARE IS PROVIDED "AS IS" AND THE AUTHOR DISCLAIMS ALL WARRANTIES + * WITH REGARD TO THIS SOFTWARE INCLUDING ALL IMPLIED WARRANTIES OF + * MERCHANTABILITY AND FITNESS. IN NO EVENT SHALL THE AUTHOR BE LIABLE FOR ANY + * SPECIAL, DIRECT, INDIRECT, OR CONSEQUENTIAL DAMAGES OR ANY DAMAGES + * WHATSOEVER RESULTING FROM LOSS OF USE, DATA OR PROFITS, WHETHER IN AN ACTION + * OF CONTRACT, NEGLIGENCE OR OTHER TORTIOUS ACTION, ARISING OUT OF OR IN + * CONNECTION WITH THE USE OR PERFORMANCE OF THIS SOFTWARE. * - * In the event that this license restricts you from making desired use of this program, contact the original author. * Written by Justin James */ diff --git a/Jupiter/TCPSocket.cpp b/Jupiter/TCPSocket.cpp index c7dae51..5f3cc99 100644 --- a/Jupiter/TCPSocket.cpp +++ b/Jupiter/TCPSocket.cpp @@ -1,8 +1,18 @@ /** - * Copyright (C) Justin James - All Rights Reserved. - * Unauthorized use or copying of this file via any medium is strictly prohibited. - * This document is proprietary and confidential. - * This document should be immediately destroyed unless given explicit permission by Justin James. + * Copyright (C) 2013-2015 Justin James. + * + * Permission to use, copy, modify, and/or distribute this software for any + * purpose with or without fee is hereby granted, provided that the above + * copyright notice and this permission notice appear in all copies. + * + * THE SOFTWARE IS PROVIDED "AS IS" AND THE AUTHOR DISCLAIMS ALL WARRANTIES + * WITH REGARD TO THIS SOFTWARE INCLUDING ALL IMPLIED WARRANTIES OF + * MERCHANTABILITY AND FITNESS. IN NO EVENT SHALL THE AUTHOR BE LIABLE FOR ANY + * SPECIAL, DIRECT, INDIRECT, OR CONSEQUENTIAL DAMAGES OR ANY DAMAGES + * WHATSOEVER RESULTING FROM LOSS OF USE, DATA OR PROFITS, WHETHER IN AN ACTION + * OF CONTRACT, NEGLIGENCE OR OTHER TORTIOUS ACTION, ARISING OUT OF OR IN + * CONNECTION WITH THE USE OR PERFORMANCE OF THIS SOFTWARE. + * * Written by Justin James */ diff --git a/Jupiter/TCPSocket.h b/Jupiter/TCPSocket.h index 7a130d6..7b0dac4 100644 --- a/Jupiter/TCPSocket.h +++ b/Jupiter/TCPSocket.h @@ -1,17 +1,18 @@ /** * Copyright (C) 2013-2015 Justin James. * - * This license must be preserved. - * Any applications, libraries, or code which make any use of any - * component of this program must not be commercial, unless explicit - * permission is granted from the original author. The use of this - * program for non-profit purposes is permitted. + * Permission to use, copy, modify, and/or distribute this software for any + * purpose with or without fee is hereby granted, provided that the above + * copyright notice and this permission notice appear in all copies. * - * This program is distributed in the hope that it will be useful, - * but WITHOUT ANY WARRANTY; without even the implied warranty of - * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. + * THE SOFTWARE IS PROVIDED "AS IS" AND THE AUTHOR DISCLAIMS ALL WARRANTIES + * WITH REGARD TO THIS SOFTWARE INCLUDING ALL IMPLIED WARRANTIES OF + * MERCHANTABILITY AND FITNESS. IN NO EVENT SHALL THE AUTHOR BE LIABLE FOR ANY + * SPECIAL, DIRECT, INDIRECT, OR CONSEQUENTIAL DAMAGES OR ANY DAMAGES + * WHATSOEVER RESULTING FROM LOSS OF USE, DATA OR PROFITS, WHETHER IN AN ACTION + * OF CONTRACT, NEGLIGENCE OR OTHER TORTIOUS ACTION, ARISING OUT OF OR IN + * CONNECTION WITH THE USE OR PERFORMANCE OF THIS SOFTWARE. * - * In the event that this license restricts you from making desired use of this program, contact the original author. * Written by Justin James */ diff --git a/Jupiter/Thinker.h b/Jupiter/Thinker.h index f170625..917dd57 100644 --- a/Jupiter/Thinker.h +++ b/Jupiter/Thinker.h @@ -1,17 +1,18 @@ /** - * Copyright (C) 2013-2014 Justin James. + * Copyright (C) 2013-2015 Justin James. * - * This license must be preserved. - * Any applications, libraries, or code which make any use of any - * component of this program must not be commercial, unless explicit - * permission is granted from the original author. The use of this - * program for non-profit purposes is permitted. + * Permission to use, copy, modify, and/or distribute this software for any + * purpose with or without fee is hereby granted, provided that the above + * copyright notice and this permission notice appear in all copies. * - * This program is distributed in the hope that it will be useful, - * but WITHOUT ANY WARRANTY; without even the implied warranty of - * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. + * THE SOFTWARE IS PROVIDED "AS IS" AND THE AUTHOR DISCLAIMS ALL WARRANTIES + * WITH REGARD TO THIS SOFTWARE INCLUDING ALL IMPLIED WARRANTIES OF + * MERCHANTABILITY AND FITNESS. IN NO EVENT SHALL THE AUTHOR BE LIABLE FOR ANY + * SPECIAL, DIRECT, INDIRECT, OR CONSEQUENTIAL DAMAGES OR ANY DAMAGES + * WHATSOEVER RESULTING FROM LOSS OF USE, DATA OR PROFITS, WHETHER IN AN ACTION + * OF CONTRACT, NEGLIGENCE OR OTHER TORTIOUS ACTION, ARISING OUT OF OR IN + * CONNECTION WITH THE USE OR PERFORMANCE OF THIS SOFTWARE. * - * In the event that this license restricts you from making desired use of this program, contact the original author. * Written by Justin James */ diff --git a/Jupiter/Timer.cpp b/Jupiter/Timer.cpp index 7db19dd..6d76125 100644 --- a/Jupiter/Timer.cpp +++ b/Jupiter/Timer.cpp @@ -1,8 +1,18 @@ /** - * Copyright (C) Justin James - All Rights Reserved. - * Unauthorized use or copying of this file via any medium is strictly prohibited. - * This document is proprietary and confidential. - * This document should be immediately destroyed unless given explicit permission by Justin James. + * Copyright (C) 2014-2015 Justin James. + * + * Permission to use, copy, modify, and/or distribute this software for any + * purpose with or without fee is hereby granted, provided that the above + * copyright notice and this permission notice appear in all copies. + * + * THE SOFTWARE IS PROVIDED "AS IS" AND THE AUTHOR DISCLAIMS ALL WARRANTIES + * WITH REGARD TO THIS SOFTWARE INCLUDING ALL IMPLIED WARRANTIES OF + * MERCHANTABILITY AND FITNESS. IN NO EVENT SHALL THE AUTHOR BE LIABLE FOR ANY + * SPECIAL, DIRECT, INDIRECT, OR CONSEQUENTIAL DAMAGES OR ANY DAMAGES + * WHATSOEVER RESULTING FROM LOSS OF USE, DATA OR PROFITS, WHETHER IN AN ACTION + * OF CONTRACT, NEGLIGENCE OR OTHER TORTIOUS ACTION, ARISING OUT OF OR IN + * CONNECTION WITH THE USE OR PERFORMANCE OF THIS SOFTWARE. + * * Written by Justin James */ diff --git a/Jupiter/Timer.h b/Jupiter/Timer.h index 2a35c3b..258cb9d 100644 --- a/Jupiter/Timer.h +++ b/Jupiter/Timer.h @@ -1,17 +1,18 @@ /** - * Copyright (C) 2014 Justin James. + * Copyright (C) 2014-2015 Justin James. * - * This license must be preserved. - * Any applications, libraries, or code which make any use of any - * component of this program must not be commercial, unless explicit - * permission is granted from the original author. The use of this - * program for non-profit purposes is permitted. + * Permission to use, copy, modify, and/or distribute this software for any + * purpose with or without fee is hereby granted, provided that the above + * copyright notice and this permission notice appear in all copies. * - * This program is distributed in the hope that it will be useful, - * but WITHOUT ANY WARRANTY; without even the implied warranty of - * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. + * THE SOFTWARE IS PROVIDED "AS IS" AND THE AUTHOR DISCLAIMS ALL WARRANTIES + * WITH REGARD TO THIS SOFTWARE INCLUDING ALL IMPLIED WARRANTIES OF + * MERCHANTABILITY AND FITNESS. IN NO EVENT SHALL THE AUTHOR BE LIABLE FOR ANY + * SPECIAL, DIRECT, INDIRECT, OR CONSEQUENTIAL DAMAGES OR ANY DAMAGES + * WHATSOEVER RESULTING FROM LOSS OF USE, DATA OR PROFITS, WHETHER IN AN ACTION + * OF CONTRACT, NEGLIGENCE OR OTHER TORTIOUS ACTION, ARISING OUT OF OR IN + * CONNECTION WITH THE USE OR PERFORMANCE OF THIS SOFTWARE. * - * In the event that this license restricts you from making desired use of this program, contact the original author. * Written by Justin James */ diff --git a/Jupiter/UDPSocket.cpp b/Jupiter/UDPSocket.cpp index b27ec9c..8dd59cf 100644 --- a/Jupiter/UDPSocket.cpp +++ b/Jupiter/UDPSocket.cpp @@ -1,8 +1,18 @@ /** - * Copyright (C) Justin James - All Rights Reserved. - * Unauthorized use or copying of this file via any medium is strictly prohibited. - * This document is proprietary and confidential. - * This document should be immediately destroyed unless given explicit permission by Justin James. + * Copyright (C) 2013-2015 Justin James. + * + * Permission to use, copy, modify, and/or distribute this software for any + * purpose with or without fee is hereby granted, provided that the above + * copyright notice and this permission notice appear in all copies. + * + * THE SOFTWARE IS PROVIDED "AS IS" AND THE AUTHOR DISCLAIMS ALL WARRANTIES + * WITH REGARD TO THIS SOFTWARE INCLUDING ALL IMPLIED WARRANTIES OF + * MERCHANTABILITY AND FITNESS. IN NO EVENT SHALL THE AUTHOR BE LIABLE FOR ANY + * SPECIAL, DIRECT, INDIRECT, OR CONSEQUENTIAL DAMAGES OR ANY DAMAGES + * WHATSOEVER RESULTING FROM LOSS OF USE, DATA OR PROFITS, WHETHER IN AN ACTION + * OF CONTRACT, NEGLIGENCE OR OTHER TORTIOUS ACTION, ARISING OUT OF OR IN + * CONNECTION WITH THE USE OR PERFORMANCE OF THIS SOFTWARE. + * * Written by Justin James */ diff --git a/Jupiter/UDPSocket.h b/Jupiter/UDPSocket.h index 72acf11..aa34f9d 100644 --- a/Jupiter/UDPSocket.h +++ b/Jupiter/UDPSocket.h @@ -1,17 +1,18 @@ /** * Copyright (C) 2013-2015 Justin James. * - * This license must be preserved. - * Any applications, libraries, or code which make any use of any - * component of this program must not be commercial, unless explicit - * permission is granted from the original author. The use of this - * program for non-profit purposes is permitted. + * Permission to use, copy, modify, and/or distribute this software for any + * purpose with or without fee is hereby granted, provided that the above + * copyright notice and this permission notice appear in all copies. * - * This program is distributed in the hope that it will be useful, - * but WITHOUT ANY WARRANTY; without even the implied warranty of - * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. + * THE SOFTWARE IS PROVIDED "AS IS" AND THE AUTHOR DISCLAIMS ALL WARRANTIES + * WITH REGARD TO THIS SOFTWARE INCLUDING ALL IMPLIED WARRANTIES OF + * MERCHANTABILITY AND FITNESS. IN NO EVENT SHALL THE AUTHOR BE LIABLE FOR ANY + * SPECIAL, DIRECT, INDIRECT, OR CONSEQUENTIAL DAMAGES OR ANY DAMAGES + * WHATSOEVER RESULTING FROM LOSS OF USE, DATA OR PROFITS, WHETHER IN AN ACTION + * OF CONTRACT, NEGLIGENCE OR OTHER TORTIOUS ACTION, ARISING OUT OF OR IN + * CONNECTION WITH THE USE OR PERFORMANCE OF THIS SOFTWARE. * - * In the event that this license restricts you from making desired use of this program, contact the original author. * Written by Justin James */ diff --git a/LICENSE b/LICENSE new file mode 100644 index 0000000..ac92066 --- /dev/null +++ b/LICENSE @@ -0,0 +1,13 @@ +Copyright (C) 2013-2015 Justin James. + +Permission to use, copy, modify, and/or distribute this software for any +purpose with or without fee is hereby granted, provided that the above +copyright notice and this permission notice appear in all copies. + +THE SOFTWARE IS PROVIDED "AS IS" AND THE AUTHOR DISCLAIMS ALL WARRANTIES +WITH REGARD TO THIS SOFTWARE INCLUDING ALL IMPLIED WARRANTIES OF +MERCHANTABILITY AND FITNESS. IN NO EVENT SHALL THE AUTHOR BE LIABLE FOR ANY +SPECIAL, DIRECT, INDIRECT, OR CONSEQUENTIAL DAMAGES OR ANY DAMAGES +WHATSOEVER RESULTING FROM LOSS OF USE, DATA OR PROFITS, WHETHER IN AN ACTION +OF CONTRACT, NEGLIGENCE OR OTHER TORTIOUS ACTION, ARISING OUT OF OR IN +CONNECTION WITH THE USE OR PERFORMANCE OF THIS SOFTWARE. \ No newline at end of file diff --git a/Release/Jupiter.lib b/Release/Jupiter.lib index 2aab294..b50d88b 100644 Binary files a/Release/Jupiter.lib and b/Release/Jupiter.lib differ