File name and their extension changes: 74/32474/1
authorPawel Sikorski <p.sikorski@samsung.com>
Wed, 17 Dec 2014 17:08:59 +0000 (18:08 +0100)
committerPawel Sikorski <p.sikorski@samsung.com>
Thu, 18 Dec 2014 11:18:08 +0000 (12:18 +0100)
* .hxx --> .h
* .cxx -> .cc
* dash ("-") in filenames --> underline ("_")

CmakeLists.txt modified accordingly

Change-Id: I3e61156428971f535608a0d16f58ef6eb5f3536b

common/CMakeLists.txt
common/include/app_installer.h [moved from common/include/AppInstaller.hxx with 94% similarity]
common/include/step.h [moved from common/include/step.hxx with 100% similarity]
common/include/step_unzip.h [moved from common/include/step-unzip.hxx with 95% similarity]
common/src/app_installer.cc [moved from common/src/AppInstaller.cxx with 97% similarity]
common/src/step/step_unzip.cc [moved from common/src/step/step-unzip.cxx with 99% similarity]
wgt/CMakeLists.txt
wgt/src/step_parse.cc [moved from wgt/src/step-parse.cxx with 93% similarity]
wgt/src/wgt_backend.cc [moved from wgt/src/wgt-backend.cxx with 95% similarity]

index 803d2b0..a13e2eb 100644 (file)
@@ -1,7 +1,7 @@
 # Target - sources
 SET(SRCS
-       src/AppInstaller.cxx
-       src/step/step-unzip.cxx
+  src/app_installer.cc
+  src/step/step_unzip.cc
 )
 # Target - definition
 ADD_LIBRARY(${TARGET_LIBNAME_COMMON} SHARED ${SRCS})
similarity index 94%
rename from common/include/AppInstaller.hxx
rename to common/include/app_installer.h
index 4f849be..1c65b75 100644 (file)
@@ -1,7 +1,7 @@
 #ifndef __APPINSTALLER_H__
 #define __APPINSTALLER_H__
 #include <context_installer.h>
-#include <step.hxx>
+#include <step.h>
 #include <list>
 
 class AppInstaller {
similarity index 95%
rename from common/include/step-unzip.hxx
rename to common/include/step_unzip.h
index ce8204c..007fbee 100644 (file)
@@ -1,6 +1,6 @@
 #ifndef __STEPUNZIP_H__
 #define __STEPUNZIP_H__
-#include <step.hxx>
+#include <step.h>
 #include <context_installer.h>
 
 class step_unzip : public Step{
similarity index 97%
rename from common/src/AppInstaller.cxx
rename to common/src/app_installer.cc
index 2c66b01..9261e2e 100644 (file)
@@ -1,4 +1,4 @@
-#include <AppInstaller.hxx>
+#include <app_installer.h>
 #include <iostream>
 #include <stdio.h>
 
similarity index 99%
rename from common/src/step/step-unzip.cxx
rename to common/src/step/step_unzip.cc
index cb07bda..b4e8ae4 100644 (file)
@@ -9,7 +9,7 @@
 #include <unzip.h>
 #include <cassert>
 #include <fcntl.h>
-#include <step-unzip.hxx>
+#include <step_unzip.h>
 #include <boost/filesystem.hpp>
 #include <boost/chrono/detail/system.hpp>
 
index 15b8bf0..23fd338 100644 (file)
@@ -1,6 +1,6 @@
 # Target - sources
 SET(SRCS
-  src/wgt-backend.cxx
+  src/wgt_backend.cc
 )
 # Target - definition
 ADD_EXECUTABLE(${TARGET_WGT_BACKEND} ${SRCS})
similarity index 93%
rename from wgt/src/step-parse.cxx
rename to wgt/src/step_parse.cc
index 80d5e99..17fbebd 100644 (file)
@@ -1,5 +1,5 @@
-#include <include/AppInstaller.hxx>
-#include <include/step.hxx>
+#include <include/app_installer.h>
+#include <include/step.h>
 #include <iostream>
 #include <stdio.h>
 #include <stdlib.h>
similarity index 95%
rename from wgt/src/wgt-backend.cxx
rename to wgt/src/wgt_backend.cc
index 35668c3..e1c19d3 100644 (file)
@@ -8,8 +8,8 @@
 #include <string.h>
 #include <errno.h>
 #include <assert.h>
-#include <AppInstaller.hxx>
-#include <step-unzip.hxx>
+#include <app_installer.h>
+#include <step_unzip.h>
 
 int
 main (int argc, char **argv)