Change class name DfsAdaptation to DfsAdaptor
authorTae-Young Chung <ty83.chung@samsung.com>
Tue, 5 Oct 2021 05:14:13 +0000 (14:14 +0900)
committerTae-Young Chung <ty83.chung@samsung.com>
Tue, 5 Oct 2021 05:14:16 +0000 (14:14 +0900)
Class name can't be identical to spacename.

Signed-off-by: Tae-Young Chung <ty83.chung@samsung.com>
include/dfs_adaptation_impl.h
src/dfs_adaptation_impl.cpp

index ee16c39..cc78d1a 100644 (file)
 
 namespace DfsAdaptation
 {
-       class DfsAdaptation
+       class DfsAdaptor
        {
        private:
                IDfsAdaptation *mDfsAdaptor;
 
        public:
-               DfsAdaptation();
-               ~DfsAdaptation();
+               DfsAdaptor();
+               ~DfsAdaptor();
        };
 
 
index 325d51e..d3e3db4 100644 (file)
@@ -29,11 +29,16 @@ extern "C"
 
 namespace DfsAdaptation
 {
-       DfsAdaptation::DfsAdaptation() :
+       DfsAdaptor::DfsAdaptor() :
                mDfsAdaptor(nullptr)
        {
                LOGI("ENTER");
                LOGI("LEAVE");
        }
 
+       DfsAdaptor::~DfsAdaptor()
+       {
+               LOGI("ENTER");
+               LOGI("LEAVE");
+       }
 }
\ No newline at end of file