Skip to content

Commit

Permalink
Renamed the header files
Browse files Browse the repository at this point in the history
  • Loading branch information
patrikolausson committed Aug 3, 2018
1 parent 77b33a6 commit 8df6c17
Show file tree
Hide file tree
Showing 15 changed files with 24 additions and 24 deletions.
File renamed without changes.
4 changes: 2 additions & 2 deletions DMXDisplay.cpp
Original file line number Diff line number Diff line change
@@ -1,8 +1,8 @@
#include "DMXDisplay.hh"
#include "DMXDisplay.hpp"

#include <stdio.h>

#include "Exception.hh"
#include "Exception.hpp"

DMXDisplay::~DMXDisplay()
{
Expand Down
2 changes: 1 addition & 1 deletion DMXDisplay.hh → DMXDisplay.hpp
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@

#include "bcm_host.h"

#include "DMXResource.hh"
#include "DMXResource.hpp"

class DMXDisplay
{
Expand Down
2 changes: 1 addition & 1 deletion DMXKeyboard.cpp
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
#include "DMXKeyboard.hh"
#include "DMXKeyboard.hpp"

#include <rfb/keysym.h>

Expand Down
2 changes: 1 addition & 1 deletion DMXKeyboard.hh → DMXKeyboard.hpp
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
#pragma once

#include "UFile.hh"
#include "UFile.hpp"

#include <rfb/rfb.h>

Expand Down
2 changes: 1 addition & 1 deletion DMXMouse.cpp
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
#include "DMXMouse.hh"
#include "DMXMouse.hpp"

void DMXMouse::DoPtr(int buttonMask, int x, int y)
{
Expand Down
2 changes: 1 addition & 1 deletion DMXMouse.hh → DMXMouse.hpp
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
#pragma once

#include "UFile.hh"
#include "UFile.hpp"

class DMXMouse
{
Expand Down
4 changes: 2 additions & 2 deletions DMXResource.cpp
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
#include "DMXResource.hh"
#include "Exception.hh"
#include "DMXResource.hpp"
#include "Exception.hpp"

DMXResource::~DMXResource()
{
Expand Down
File renamed without changes.
4 changes: 2 additions & 2 deletions DMXVNCServer.cpp
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
#include "DMXVNCServer.hh"
#include "DMXVNCServer.hpp"

#include "Exception.hh"
#include "Exception.hpp"

#undef max

Expand Down
12 changes: 6 additions & 6 deletions DMXVNCServer.hh → DMXVNCServer.hpp
Original file line number Diff line number Diff line change
Expand Up @@ -9,12 +9,12 @@

#include <rfb/rfb.h>

#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
{
Expand Down
File renamed without changes.
4 changes: 2 additions & 2 deletions UFile.cpp
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
#include "UFile.hh"
#include "UFile.hpp"

#include "Exception.hh"
#include "Exception.hpp"

#include <stdio.h>
#include <sys/types.h>
Expand Down
File renamed without changes.
10 changes: 5 additions & 5 deletions main.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -17,11 +17,11 @@

#include <libconfig.h++>

#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;
Expand Down

0 comments on commit 8df6c17

Please sign in to comment.