From 8df6c174752254ddc6a9492b5be265c19751ba26 Mon Sep 17 00:00:00 2001 From: Patrik Olausson Date: Fri, 3 Aug 2018 18:20:45 +0200 Subject: [PATCH] Renamed the header files --- BCMHost.hh => BCMHost.hpp | 0 DMXDisplay.cpp | 4 ++-- DMXDisplay.hh => DMXDisplay.hpp | 2 +- DMXKeyboard.cpp | 2 +- DMXKeyboard.hh => DMXKeyboard.hpp | 2 +- DMXMouse.cpp | 2 +- DMXMouse.hh => DMXMouse.hpp | 2 +- DMXResource.cpp | 4 ++-- DMXResource.hh => DMXResource.hpp | 0 DMXVNCServer.cpp | 4 ++-- DMXVNCServer.hh => DMXVNCServer.hpp | 12 ++++++------ Exception.hh => Exception.hpp | 0 UFile.cpp | 4 ++-- UFile.hh => UFile.hpp | 0 main.cpp | 10 +++++----- 15 files changed, 24 insertions(+), 24 deletions(-) rename BCMHost.hh => BCMHost.hpp (100%) rename DMXDisplay.hh => DMXDisplay.hpp (93%) rename DMXKeyboard.hh => DMXKeyboard.hpp (92%) rename DMXMouse.hh => DMXMouse.hpp (95%) rename DMXResource.hh => DMXResource.hpp (100%) rename DMXVNCServer.hh => DMXVNCServer.hpp (94%) rename Exception.hh => Exception.hpp (100%) rename UFile.hh => UFile.hpp (100%) diff --git a/BCMHost.hh b/BCMHost.hpp similarity index 100% rename from BCMHost.hh rename to BCMHost.hpp diff --git a/DMXDisplay.cpp b/DMXDisplay.cpp index 39486c7..c515f67 100644 --- a/DMXDisplay.cpp +++ b/DMXDisplay.cpp @@ -1,8 +1,8 @@ -#include "DMXDisplay.hh" +#include "DMXDisplay.hpp" #include -#include "Exception.hh" +#include "Exception.hpp" DMXDisplay::~DMXDisplay() { diff --git a/DMXDisplay.hh b/DMXDisplay.hpp similarity index 93% rename from DMXDisplay.hh rename to DMXDisplay.hpp index d3f2fa0..71e22a6 100644 --- a/DMXDisplay.hh +++ b/DMXDisplay.hpp @@ -3,7 +3,7 @@ #include "bcm_host.h" -#include "DMXResource.hh" +#include "DMXResource.hpp" class DMXDisplay { diff --git a/DMXKeyboard.cpp b/DMXKeyboard.cpp index d485212..cccad31 100644 --- a/DMXKeyboard.cpp +++ b/DMXKeyboard.cpp @@ -1,4 +1,4 @@ -#include "DMXKeyboard.hh" +#include "DMXKeyboard.hpp" #include diff --git a/DMXKeyboard.hh b/DMXKeyboard.hpp similarity index 92% rename from DMXKeyboard.hh rename to DMXKeyboard.hpp index 6143331..f144769 100644 --- a/DMXKeyboard.hh +++ b/DMXKeyboard.hpp @@ -1,6 +1,6 @@ #pragma once -#include "UFile.hh" +#include "UFile.hpp" #include diff --git a/DMXMouse.cpp b/DMXMouse.cpp index 3858e4a..f0cb4e7 100644 --- a/DMXMouse.cpp +++ b/DMXMouse.cpp @@ -1,4 +1,4 @@ -#include "DMXMouse.hh" +#include "DMXMouse.hpp" void DMXMouse::DoPtr(int buttonMask, int x, int y) { diff --git a/DMXMouse.hh b/DMXMouse.hpp similarity index 95% rename from DMXMouse.hh rename to DMXMouse.hpp index cb08aa4..9fdd8e0 100644 --- a/DMXMouse.hh +++ b/DMXMouse.hpp @@ -1,6 +1,6 @@ #pragma once -#include "UFile.hh" +#include "UFile.hpp" class DMXMouse { diff --git a/DMXResource.cpp b/DMXResource.cpp index 2db05e5..ae5518f 100644 --- a/DMXResource.cpp +++ b/DMXResource.cpp @@ -1,5 +1,5 @@ -#include "DMXResource.hh" -#include "Exception.hh" +#include "DMXResource.hpp" +#include "Exception.hpp" DMXResource::~DMXResource() { diff --git a/DMXResource.hh b/DMXResource.hpp similarity index 100% rename from DMXResource.hh rename to DMXResource.hpp diff --git a/DMXVNCServer.cpp b/DMXVNCServer.cpp index 91d9c55..3377582 100644 --- a/DMXVNCServer.cpp +++ b/DMXVNCServer.cpp @@ -1,6 +1,6 @@ -#include "DMXVNCServer.hh" +#include "DMXVNCServer.hpp" -#include "Exception.hh" +#include "Exception.hpp" #undef max diff --git a/DMXVNCServer.hh b/DMXVNCServer.hpp similarity index 94% rename from DMXVNCServer.hh rename to DMXVNCServer.hpp index 589506e..998f8dc 100644 --- a/DMXVNCServer.hh +++ b/DMXVNCServer.hpp @@ -9,12 +9,12 @@ #include -#include "BCMHost.hh" -#include "DMXDisplay.hh" -#include "DMXKeyboard.hh" -#include "DMXMouse.hh" -#include "DMXResource.hh" -#include "UFile.hh" +#include "BCMHost.hpp" +#include "DMXDisplay.hpp" +#include "DMXKeyboard.hpp" +#include "DMXMouse.hpp" +#include "DMXResource.hpp" +#include "UFile.hpp" class ImageMap { diff --git a/Exception.hh b/Exception.hpp similarity index 100% rename from Exception.hh rename to Exception.hpp diff --git a/UFile.cpp b/UFile.cpp index 0e5ffca..9e8e0d2 100644 --- a/UFile.cpp +++ b/UFile.cpp @@ -1,6 +1,6 @@ -#include "UFile.hh" +#include "UFile.hpp" -#include "Exception.hh" +#include "Exception.hpp" #include #include diff --git a/UFile.hh b/UFile.hpp similarity index 100% rename from UFile.hh rename to UFile.hpp diff --git a/main.cpp b/main.cpp index 1215f03..3cef598 100644 --- a/main.cpp +++ b/main.cpp @@ -17,11 +17,11 @@ #include -#include "Exception.hh" -#include "UFile.hh" -#include "DMXResource.hh" -#include "DMXDisplay.hh" -#include "DMXVNCServer.hh" +#include "Exception.hpp" +#include "UFile.hpp" +#include "DMXResource.hpp" +#include "DMXDisplay.hpp" +#include "DMXVNCServer.hpp" #define BPP 2 extern bool terminate;