From 2d5d43a57d8c0aeb655ae9255cd767f35f6f8517 Mon Sep 17 00:00:00 2001 From: James Turner Date: Sun, 16 Mar 2014 22:35:00 +0000 Subject: [PATCH] Rename GPSsmooth files. - avoid confusion with GPS instrument files. --- utils/GPSsmooth/CMakeLists.txt | 2 +- utils/GPSsmooth/{gps.cxx => GPSsmooth.cxx} | 2 +- utils/GPSsmooth/{gps.hxx => GPSsmooth.hxx} | 0 utils/GPSsmooth/gps_main.cxx | 2 +- 4 files changed, 3 insertions(+), 3 deletions(-) rename utils/GPSsmooth/{gps.cxx => GPSsmooth.cxx} (99%) rename utils/GPSsmooth/{gps.hxx => GPSsmooth.hxx} (100%) diff --git a/utils/GPSsmooth/CMakeLists.txt b/utils/GPSsmooth/CMakeLists.txt index 2349cc727..a76c9521d 100644 --- a/utils/GPSsmooth/CMakeLists.txt +++ b/utils/GPSsmooth/CMakeLists.txt @@ -1,6 +1,6 @@ add_executable(GPSsmooth - gps.cxx gps.hxx + GPSsmooth.cxx GPSsmooth.hxx gps_main.cxx ) diff --git a/utils/GPSsmooth/gps.cxx b/utils/GPSsmooth/GPSsmooth.cxx similarity index 99% rename from utils/GPSsmooth/gps.cxx rename to utils/GPSsmooth/GPSsmooth.cxx index 1d6a79c22..c3ddde99e 100644 --- a/utils/GPSsmooth/gps.cxx +++ b/utils/GPSsmooth/GPSsmooth.cxx @@ -10,7 +10,7 @@ #include #include -#include "gps.hxx" +#include "GPSsmooth.hxx" using std::cout; using std::endl; diff --git a/utils/GPSsmooth/gps.hxx b/utils/GPSsmooth/GPSsmooth.hxx similarity index 100% rename from utils/GPSsmooth/gps.hxx rename to utils/GPSsmooth/GPSsmooth.hxx diff --git a/utils/GPSsmooth/gps_main.cxx b/utils/GPSsmooth/gps_main.cxx index 998a23510..2118b9f24 100644 --- a/utils/GPSsmooth/gps_main.cxx +++ b/utils/GPSsmooth/gps_main.cxx @@ -20,7 +20,7 @@ #include #include -#include "gps.hxx" +#include "GPSsmooth.hxx" using std::cout;