pass: Make include directory containing the exported header files 35/168335/1
authorChanwoo Choi <cw00.choi@samsung.com>
Fri, 26 Jan 2018 00:57:48 +0000 (09:57 +0900)
committerChanwoo Choi <cw00.choi@samsung.com>
Fri, 26 Jan 2018 01:15:37 +0000 (10:15 +0900)
commit5e45392dfefd5aec3a4d665243abef2324e99f2c
tree34918257f38623aaa9b2dad3fd0622fe3872b403
parentd79aa1b2103eebcd32cdf0ca1b2edb766d3fac26
pass: Make include directory containing the exported header files

Existing *.[ch] files uses the following type in order to include
the header file which is located in the outside directory. But it is
not proper method for including the header file.
- #include "core/*.h:

Make 'include' directory containing the all exported header files
and move the exported header files under 'include/' as following:
- src/core/*.h   -> include/pass/log.h
- src/shared/*.h -> include/pass/*.h
- src/hal/hal.h  -> include/pass/hal/hal.h

Change-Id: I68f6ad4c711b50a1d48bee3785d5657a8b58c963
Signed-off-by: Chanwoo Choi <cw00.choi@samsung.com>
25 files changed:
CMakeLists.txt
include/pass/common.h [moved from src/core/common.h with 100% similarity]
include/pass/config-parser.h [moved from src/core/config-parser.h with 100% similarity]
include/pass/device-notifier.h [moved from src/core/device-notifier.h with 100% similarity]
include/pass/devices.h [moved from src/core/devices.h with 100% similarity]
include/pass/gdbus-util.h [moved from src/core/gdbus-util.h with 100% similarity]
include/pass/hal/hal.h [moved from src/hal/hal.h with 100% similarity]
include/pass/log.h [moved from src/shared/log.h with 100% similarity]
src/core/common.c
src/core/config-parser.c
src/core/device-notifier.c
src/core/devices.c
src/core/gdbus-util.c
src/core/main.c
src/hal/CMakeLists.txt
src/hal/hal.c
src/pass/pass-gov.c
src/pass/pass-hal.c
src/pass/pass-hal.h
src/pass/pass-parser.c
src/pass/pass-pmqos.c
src/pass/pass.c
src/pass/pass.h
src/pmqos/pmqos-parser.c
src/pmqos/pmqos.c