diff options
author | A. Wilcox <AWilcox@Wilcox-Tech.com> | 2019-10-08 23:37:44 -0500 |
---|---|---|
committer | A. Wilcox <AWilcox@Wilcox-Tech.com> | 2019-10-08 23:37:44 -0500 |
commit | 542e39743cd3fe85219bdb7fb00b385ac69f05c4 (patch) | |
tree | 30722d3e0ba784f9d0ad59fba2d06cdf771dde5e /hscript | |
parent | d9ee6b07e5496916af500b7d2d3358621a64c970 (diff) | |
download | horizon-542e39743cd3fe85219bdb7fb00b385ac69f05c4.tar.gz horizon-542e39743cd3fe85219bdb7fb00b385ac69f05c4.tar.bz2 horizon-542e39743cd3fe85219bdb7fb00b385ac69f05c4.tar.xz horizon-542e39743cd3fe85219bdb7fb00b385ac69f05c4.zip |
hscript: New module 'disk', fix headers of all files
Diffstat (limited to 'hscript')
-rw-r--r-- | hscript/CMakeLists.txt | 1 | ||||
-rw-r--r-- | hscript/disk.cc | 13 | ||||
-rw-r--r-- | hscript/disk.hh | 2 | ||||
-rw-r--r-- | hscript/meta.cc | 2 | ||||
-rw-r--r-- | hscript/network.cc | 2 | ||||
-rw-r--r-- | hscript/network.hh | 2 | ||||
-rw-r--r-- | hscript/script.cc | 2 |
7 files changed, 19 insertions, 5 deletions
diff --git a/hscript/CMakeLists.txt b/hscript/CMakeLists.txt index a36bee5..845ee82 100644 --- a/hscript/CMakeLists.txt +++ b/hscript/CMakeLists.txt @@ -1,5 +1,6 @@ set(HSCRIPT_SOURCE script.cc + disk.cc key.cc meta.cc network.cc diff --git a/hscript/disk.cc b/hscript/disk.cc new file mode 100644 index 0000000..a1313f0 --- /dev/null +++ b/hscript/disk.cc @@ -0,0 +1,13 @@ +/* + * disk.cc - Implementation of the Key classes for disk manipulation + * libhscript, the HorizonScript library for + * Project Horizon + * + * Copyright (c) 2019 Adélie Linux and contributors. All rights reserved. + * This code is licensed under the AGPL 3.0 license, as noted in the + * LICENSE-code file in the root directory of this repository. + * + * SPDX-License-Identifier: AGPL-3.0-only + */ + +#include "disk.hh" diff --git a/hscript/disk.hh b/hscript/disk.hh index accac35..ad9a046 100644 --- a/hscript/disk.hh +++ b/hscript/disk.hh @@ -1,5 +1,5 @@ /* - * disk.hh - Definition of the disk Key classes + * disk.hh - Definition of the Key classes for disk manipulation * libhscript, the HorizonScript library for * Project Horizon * diff --git a/hscript/meta.cc b/hscript/meta.cc index 22c5e40..4d75819 100644 --- a/hscript/meta.cc +++ b/hscript/meta.cc @@ -1,5 +1,5 @@ /* - * metadata.cc - Implementation of the Key classes for system metadata + * meta.cc - Implementation of the Key classes for system metadata * libhscript, the HorizonScript library for * Project Horizon * diff --git a/hscript/network.cc b/hscript/network.cc index e26ac93..c494485 100644 --- a/hscript/network.cc +++ b/hscript/network.cc @@ -1,5 +1,5 @@ /* - * network.cc - Implementation of the network Key classes + * network.cc - Implementation of the Key classes for network configuration * libhscript, the HorizonScript library for * Project Horizon * diff --git a/hscript/network.hh b/hscript/network.hh index ce64ca6..52e41f9 100644 --- a/hscript/network.hh +++ b/hscript/network.hh @@ -1,5 +1,5 @@ /* - * network.hh - Definition of the network Key classes + * network.hh - Definition of the Key classes for network configuration * libhscript, the HorizonScript library for * Project Horizon * diff --git a/hscript/script.cc b/hscript/script.cc index 90e6774..2bc7831 100644 --- a/hscript/script.cc +++ b/hscript/script.cc @@ -1,5 +1,5 @@ /* - * script.hh - Implementation of the Script class + * script.cc - Implementation of the Script class * libhscript, the HorizonScript library for * Project Horizon * |