1
0
Fork 0
mirror of https://github.com/eosswedenorg/antelope-keygen synced 2026-07-04 12:03:41 +02:00

cli: change .h to .hpp

This commit is contained in:
Henrik Hautakoski 2020-04-16 12:59:03 +02:00
parent e9dadc07ac
commit 54d46004c1
13 changed files with 13 additions and 13 deletions

View file

@ -60,7 +60,7 @@ elseif (CMAKE_CXX_COMPILER_ID MATCHES "MSVC")
endif() endif()
# Project config file # Project config file
configure_file(config.h.in "${PROJECT_BINARY_DIR}/config.h" @ONLY) configure_file(config.hpp.in "${PROJECT_BINARY_DIR}/config.hpp" @ONLY)
include_directories(${PROJECT_BINARY_DIR}) include_directories(${PROJECT_BINARY_DIR})
# -------------------------------- # --------------------------------

View file

@ -23,7 +23,7 @@
*/ */
#include <chrono> #include <chrono>
#include <libeosio/ec.h> #include <libeosio/ec.h>
#include "benchmark.h" #include "benchmark.hpp"
using std::chrono::steady_clock; using std::chrono::steady_clock;
using std::chrono::duration; using std::chrono::duration;

View file

@ -24,8 +24,8 @@
#include <iostream> #include <iostream>
#include <libeosio/WIF.h> #include <libeosio/WIF.h>
#include <eoskeygen/core/dictionary.h> #include <eoskeygen/core/dictionary.h>
#include "console.h" #include "console.hpp"
#include "cli_key_search_result.h" #include "cli_key_search_result.hpp"
namespace eoskeygen { namespace eoskeygen {

View file

@ -22,8 +22,8 @@
* SOFTWARE. * SOFTWARE.
*/ */
#include <iostream> #include <iostream>
#include "isatty.h" #include "isatty.hpp"
#include "console.h" #include "console.hpp"
namespace eoskeygen { namespace console { namespace eoskeygen { namespace console {

View file

@ -22,7 +22,7 @@
* SOFTWARE. * SOFTWARE.
*/ */
#include <iostream> #include <iostream>
#include "console.h" #include "console.hpp"
namespace eoskeygen { namespace eoskeygen {

View file

@ -23,7 +23,7 @@
*/ */
#include <windows.h> #include <windows.h>
#include <iostream> #include <iostream>
#include "console.h" #include "console.hpp"
namespace eoskeygen { namespace eoskeygen {

View file

@ -5,7 +5,7 @@
#define _isatty isatty #define _isatty isatty
#define _fileno fileno #define _fileno fileno
#endif #endif
#include "isatty.h" #include "isatty.hpp"
namespace eoskeygen { namespace eoskeygen {

View file

@ -32,10 +32,10 @@
#include <eoskeygen/core/dictionary.h> #include <eoskeygen/core/dictionary.h>
#include <eoskeygen/core/leet.h> #include <eoskeygen/core/leet.h>
#include <eoskeygen/key_search.h> #include <eoskeygen/key_search.h>
#include "cli_key_search_result.h" #include "cli_key_search_result.hpp"
#include "console.h" #include "console.hpp"
#include "benchmark.h" #include "benchmark.hpp"
#include "config.h" #include "config.hpp"
// Command line options. // Command line options.
bool option_l33t = false; bool option_l33t = false;