From ddc1af895776185fd5bdd3d9992c44f8fd10d28c Mon Sep 17 00:00:00 2001 From: Henrik Hautakoski Date: Fri, 20 Mar 2020 18:14:53 +0100 Subject: [PATCH] move core/file.h to library also. --- {src => include/eoskeygen}/core/file.h | 0 src/core/dictionary.cpp | 2 +- src/core/file.cpp | 2 +- src/main.cpp | 4 ++-- 4 files changed, 4 insertions(+), 4 deletions(-) rename {src => include/eoskeygen}/core/file.h (100%) diff --git a/src/core/file.h b/include/eoskeygen/core/file.h similarity index 100% rename from src/core/file.h rename to include/eoskeygen/core/file.h diff --git a/src/core/dictionary.cpp b/src/core/dictionary.cpp index b0d570d..e3431ba 100644 --- a/src/core/dictionary.cpp +++ b/src/core/dictionary.cpp @@ -6,7 +6,7 @@ #include #include #include -#include "file.h" +#include namespace eoskeygen { diff --git a/src/core/file.cpp b/src/core/file.cpp index 72c01b8..6bdc497 100644 --- a/src/core/file.cpp +++ b/src/core/file.cpp @@ -1,6 +1,6 @@ #include -#include "file.h" +#include namespace eoskeygen { diff --git a/src/main.cpp b/src/main.cpp index 3b6a206..384d2fc 100644 --- a/src/main.cpp +++ b/src/main.cpp @@ -26,14 +26,14 @@ #endif /* HAVE_THREADS */ #include #include -#include +#include #include +#include #include #include #include #include #include "cli_key_search_result.h" -#include "core/file.h" #include "console.h" #include "benchmark.h" #include "config.h"