summaryrefslogtreecommitdiff
path: root/hscript
diff options
context:
space:
mode:
Diffstat (limited to 'hscript')
-rw-r--r--hscript/CMakeLists.txt1
-rw-r--r--hscript/disk.cc13
-rw-r--r--hscript/disk.hh2
-rw-r--r--hscript/meta.cc2
-rw-r--r--hscript/network.cc2
-rw-r--r--hscript/network.hh2
-rw-r--r--hscript/script.cc2
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
*