Skip to content

Commit

Permalink
Merge pull request #22 from hetulbhatt/develop
Browse files Browse the repository at this point in the history
renamed .h files to .hpp. second try.
  • Loading branch information
hetulbhatt authored Jun 18, 2023
2 parents 2427875 + 844656c commit 1df28da
Show file tree
Hide file tree
Showing 7 changed files with 6 additions and 6 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@
#include <string>
#include <iostream>

#include "logger.h"
#include "logger.hpp"

class ActionPerformer
{
Expand Down
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
#ifndef FILELOADER_H
#define FILELOADER_H

#include "helper.h"
#include "helper.hpp"

#include <fstream>
#include <sstream>
Expand Down
File renamed without changes.
2 changes: 1 addition & 1 deletion include/keyflow/keyhook.h → include/keyflow/keyhook.hpp
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
#ifndef KEYHOOK_H
#define KEYHOOK_H

#include "keystroke_handler.h"
#include "keystroke_handler.hpp"

LRESULT CALLBACK keyboard_hook_proc(int nCode, WPARAM wParam, LPARAM lParam);

Expand Down
Original file line number Diff line number Diff line change
@@ -1,8 +1,8 @@
#ifndef KEYSTROKE_HANDLER_H
#define KEYSTROKE_HANDLER_H

#include "action_performer.h"
#include "fileloader.h"
#include "action_performer.hpp"
#include "fileloader.hpp"

#define TOTAL_KEYS 256
#define PASTE_EVENT 1
Expand Down
File renamed without changes.
2 changes: 1 addition & 1 deletion src/main.cpp
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
#include "../include/keyflow/keyhook.h"
#include "../include/keyflow/keyhook.hpp"

int main(int argc, char* argv[]) {
Logger::initialize();
Expand Down

0 comments on commit 1df28da

Please sign in to comment.