summaryrefslogtreecommitdiff
path: root/interfaces
diff options
context:
space:
mode:
Diffstat (limited to 'interfaces')
-rw-r--r--interfaces/distrio_common.idl (renamed from interfaces/common.idl)14
-rw-r--r--interfaces/distrio_io.idl (renamed from interfaces/io.idl)2
-rw-r--r--interfaces/distrio_manager.idl (renamed from interfaces/manager.idl)4
3 files changed, 10 insertions, 10 deletions
diff --git a/interfaces/common.idl b/interfaces/distrio_common.idl
index ded0d1e..8756732 100644
--- a/interfaces/common.idl
+++ b/interfaces/distrio_common.idl
@@ -17,19 +17,19 @@ module Distrio {
*/
enum Error_code {
SUCCESS,
- EINVAL,
- ENOTSUPPORTED
+ E_INVAL,
+ E_NOTSUPPORTED
};
/**
* @brief used for filtering and classification
*/
enum Error_level {
- DEBUG,
- INFO,
- WARNING,
- NORMAL,
- CRITICAL
+ L_DEBUG,
+ L_INFO,
+ L_WARNING,
+ L_NORMAL,
+ L_CRITICAL
};
/**
diff --git a/interfaces/io.idl b/interfaces/distrio_io.idl
index 27f9ae8..25d69a8 100644
--- a/interfaces/io.idl
+++ b/interfaces/distrio_io.idl
@@ -1,7 +1,7 @@
#ifndef DISTRIO_IO_IDL
#define DISTRIO_IO_IDL
-#include "common.idl"
+#include "distrio_common.idl"
/**
* @brief the implementation of these interfaces are responsible for
diff --git a/interfaces/manager.idl b/interfaces/distrio_manager.idl
index f1dffa1..83ab13e 100644
--- a/interfaces/manager.idl
+++ b/interfaces/distrio_manager.idl
@@ -1,8 +1,8 @@
#ifndef DISTRDistrio_CONTROLLER_IDL
#define DISTRDistrio_CONTROLLER_IDL
-#include "common.idl"
-#include "io.idl"
+#include "distrio_common.idl"
+#include "distrio_io.idl"
/**
* @brief logical view of IO's and Devices (not HW specific)