summaryrefslogtreecommitdiffstats
path: root/inc/vision-artificial/proc/lighters.hpp
diff options
context:
space:
mode:
Diffstat (limited to 'inc/vision-artificial/proc/lighters.hpp')
-rw-r--r--inc/vision-artificial/proc/lighters.hpp71
1 files changed, 71 insertions, 0 deletions
diff --git a/inc/vision-artificial/proc/lighters.hpp b/inc/vision-artificial/proc/lighters.hpp
new file mode 100644
index 0000000..daf3ac0
--- /dev/null
+++ b/inc/vision-artificial/proc/lighters.hpp
@@ -0,0 +1,71 @@
+/******************************************************************************
+ * Copyright (C) 2018 Alejandro Colomar Andrés *
+ * SPDX-License-Identifier: GPL-2.0-only *
+ ******************************************************************************/
+
+
+/******************************************************************************
+ ******* include guard ********************************************************
+ ******************************************************************************/
+#ifndef VA_PROC_LIGHTERS_HPP
+#define VA_PROC_LIGHTERS_HPP
+
+
+/******************************************************************************
+ ******* headers **************************************************************
+ ******************************************************************************/
+
+
+/******************************************************************************
+ ******* macros ***************************************************************
+ ******************************************************************************/
+
+
+/******************************************************************************
+ ******* enums ****************************************************************
+ ******************************************************************************/
+enum Proc_Lighter {
+ LIGHTER_OK,
+ LIGHTER_NOK_LIGHTER,
+ LIGHTER_NOK_SIZE
+};
+
+
+/******************************************************************************
+ ******* structs / unions *****************************************************
+ ******************************************************************************/
+
+
+/******************************************************************************
+ ******* variables ************************************************************
+ ******************************************************************************/
+
+
+/******************************************************************************
+ ******* extern functions *****************************************************
+ ******************************************************************************/
+extern "C"
+{
+int proc_lighter (void);
+}
+
+
+/******************************************************************************
+ ******* static inline functions (prototypes) *********************************
+ ******************************************************************************/
+
+
+/******************************************************************************
+ ******* static inline functions (definitions) ********************************
+ ******************************************************************************/
+
+
+/******************************************************************************
+ ******* include guard ********************************************************
+ ******************************************************************************/
+#endif /* vision-artificial/proc/lighters.hpp */
+
+
+/******************************************************************************
+ ******* end of file **********************************************************
+ ******************************************************************************/