[nnfw-api] rename api related files (#7895)
author이상규/On-Device Lab(SR)/Principal Engineer/삼성전자 <sg5.lee@samsung.com>
Wed, 2 Oct 2019 05:01:52 +0000 (14:01 +0900)
committer이춘석/On-Device Lab(SR)/Staff Engineer/삼성전자 <chunseok.lee@samsung.com>
Wed, 2 Oct 2019 05:01:52 +0000 (14:01 +0900)
commitdbe2eb10a18c3ac8e9a2419362c887e95e4813c1
tree2ab1e2c0eb065efd86a54749d19ef3faeb572c36
parent945aeab5fb9fdc75660909d33be80bc9ad0b4b0e
[nnfw-api] rename api related files (#7895)

- nnfw_dev.cc is renamed to nnfw_api.cc.
  - nnfw_dev.cc looks like the implementation for `nnfw_dev.h`. (i.e. APIs for developers like custom op)
  - However, it is a binding from C APIs to C++ implementation for WHOLE APIs.
- nnfw_api.cc and nnfw_api.hpp are C++ implementation.
  - nnfw_api.cc is already used for a binding implementation the above.
  - Thus, they are renamed to nnfw_api_internal.*.
- nnfw_api.hpp is renamed to nnfw_api_internal.h.
  - It was the only file that uses the suffix `*.hpp`.
- wrapper directory is removed to make structure simple.

Signed-off-by: Sanggyu Lee <sg5.lee@samsung.com>
runtimes/neurun/api/nnfw_api.cc [moved from runtimes/neurun/api/nnfw_dev.cc with 99% similarity]
runtimes/neurun/api/nnfw_api_internal.cc [moved from runtimes/neurun/api/wrapper/nnfw_api.cc with 99% similarity]
runtimes/neurun/api/nnfw_api_internal.h [moved from runtimes/neurun/api/wrapper/nnfw_api.hpp with 94% similarity]