diff options
| author | Manuel Traut <manut@mecka.net> | 2012-06-02 18:40:19 +0200 |
|---|---|---|
| committer | Manuel Traut <manut@mecka.net> | 2012-06-02 18:40:19 +0200 |
| commit | 89e787c826890aed88f632b1fd5cf4f65541067f (patch) | |
| tree | f509b54ec7a5c44471da7634972f4ef8822cf726 /interfaces | |
| parent | 3fc5a341321c4c042bb464dbb1f62856fc2d31a4 (diff) | |
fix includes paths, etc
common, io, manager can be build now
Signed-off-by: Manuel Traut <manut@mecka.net>
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) |
