Browse Source

adding license

Patrik Kovacs 6 years ago
parent
commit
a2e0944d6a

+ 21 - 0
LICENSE

@@ -0,0 +1,21 @@
+MIT License
+
+Copyright (c) 2016 
+
+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.

+ 3 - 3
include/hdf4cpp/HdfAttribute.h

@@ -1,6 +1,6 @@
-//
-// Created by patrik on 24.08.17.
-//
+/// \copyright Copyright (c) Catalysts GmbH
+/// \author Patrik Kovacs, Catalysts GmbH
+
 #ifndef HDF4CPP_HDFATTRIBUTE_H
 #define HDF4CPP_HDFATTRIBUTE_H
 

+ 3 - 3
include/hdf4cpp/HdfAttribute_priv.h

@@ -1,9 +1,9 @@
-//
-// Created by patrik on 11.08.17.
-//
+/// \copyright Copyright (c) Catalysts GmbH
+/// \author Patrik Kovacs, Catalysts GmbH
 
 #ifndef HDF4CPP_HDFATTRIBUTE_PRIV_H
 #define HDF4CPP_HDFATTRIBUTE_PRIV_H
+
 #include <hdf4cpp/HdfAttribute.h>
 #include <hdf4cpp/HdfException.h>
 #include <hdf4cpp/HdfObject.h>

+ 2 - 3
include/hdf4cpp/HdfDefines.h

@@ -1,6 +1,5 @@
-//
-// Created by patrik on 11.08.17.
-//
+/// \copyright Copyright (c) Catalysts GmbH
+/// \author Patrik Kovacs, Catalysts GmbH
 
 #ifndef HDF4CPP_HDFDEFINES_H
 #define HDF4CPP_HDFDEFINES_H

+ 2 - 3
include/hdf4cpp/HdfException.h

@@ -1,6 +1,5 @@
-//
-// Created by patrik on 22.08.17.
-//
+/// \copyright Copyright (c) Catalysts GmbH
+/// \author Patrik Kovacs, Catalysts GmbH
 
 #ifndef HDF4CPP_HDFEXCEPTION_H
 #define HDF4CPP_HDFEXCEPTION_H

+ 2 - 3
include/hdf4cpp/HdfFile.h

@@ -1,6 +1,5 @@
-//
-// Created by patrik on 10.08.17.
-//
+/// \copyright Copyright (c) Catalysts GmbH
+/// \author Patrik Kovacs, Catalysts GmbH
 
 #ifndef HDF4CPP_HDFFILE_H
 #define HDF4CPP_HDFFILE_H

+ 2 - 3
include/hdf4cpp/HdfItem.h

@@ -1,6 +1,5 @@
-//
-// Created by patrik on 11.08.17.
-//
+/// \copyright Copyright (c) Catalysts GmbH
+/// \author Patrik Kovacs, Catalysts GmbH
 
 #ifndef HDF4CPP_HDFITEM_H
 #define HDF4CPP_HDFITEM_H

+ 2 - 3
include/hdf4cpp/HdfObject.h

@@ -1,6 +1,5 @@
-//
-// Created by patrik on 23.08.17.
-//
+/// \copyright Copyright (c) Catalysts GmbH
+/// \author Patrik Kovacs, Catalysts GmbH
 
 #ifndef HDF4CPP_HDFOBJECT_H
 #define HDF4CPP_HDFOBJECT_H

+ 2 - 3
lib/HdfAttribute.cpp

@@ -1,6 +1,5 @@
-//
-// Created by patrik on 11.08.17.
-//
+/// \copyright Copyright (c) Catalysts GmbH
+/// \author Patrik Kovacs, Catalysts GmbH
 
 #include <hdf4cpp/HdfDefines.h>
 #include <hdf4cpp/HdfAttribute_priv.h>

+ 2 - 3
lib/HdfException.cpp

@@ -1,6 +1,5 @@
-//
-// Created by patrik on 22.08.17.
-//
+/// \copyright Copyright (c) Catalysts GmbH
+/// \author Patrik Kovacs, Catalysts GmbH
 
 #include <hdf4cpp/HdfException.h>
 

+ 2 - 3
lib/HdfFile.cpp

@@ -1,6 +1,5 @@
-//
-// Created by patrik on 10.08.17.
-//
+/// \copyright Copyright (c) Catalysts GmbH
+/// \author Patrik Kovacs, Catalysts GmbH
 
 #include <hdf/mfhdf.h>
 #include <stdexcept>

+ 2 - 3
lib/HdfItem.cpp

@@ -1,6 +1,5 @@
-//
-// Created by patrik on 11.08.17.
-//
+/// \copyright Copyright (c) Catalysts GmbH
+/// \author Patrik Kovacs, Catalysts GmbH
 
 #include <hdf4cpp/HdfFile.h>
 #include <hdf4cpp/HdfItem.h>

+ 2 - 3
tests/HdfFileTest.cpp

@@ -1,6 +1,5 @@
-//
-// Created by patrik on 10.08.17.
-//
+/// \copyright Copyright (c) Catalysts GmbH
+/// \author Patrik Kovacs, Catalysts GmbH
 
 #include <gtest/gtest.h>
 #include <hdf4cpp/HdfFile.h>