Skip to content

Commit

Permalink
Update inputReader.cpp
Browse files Browse the repository at this point in the history
  • Loading branch information
lyndskg committed Jan 7, 2024
1 parent 7fc4fa3 commit 3d72e33
Showing 1 changed file with 7 additions and 6 deletions.
13 changes: 7 additions & 6 deletions src/inputReader.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,6 @@
#include <sstream>
#include <stdexcept> // For exception handling
#include <string>
// #include "../include/third_party/fast_io/include/fast_io.h"
#include <curl/curl.h> // Example library for making HTTP requests
// Include necessary database libraries

Expand All @@ -24,6 +23,7 @@

using namespace std;


// Include the declaration of the fast_io function
// TODO: fix later
// extern void fast_io();
Expand All @@ -37,16 +37,17 @@ using namespace std;
size_t responseCallback(void* contents, size_t size, size_t nmemb, string* response);


// ----------------------------------------------------------------------------
// "inputReader" Class Member Function Implementations
// ----------------------------------------------------------------------------
/*------------------------------ CONSTRUCTORS -------------------------------*/
// ------------------------------------------------------------------------------------------------
// "inputReader" Class Member Function Implementations
// ------------------------------------------------------------------------------------------------
/*---------------------------------------- CONSTRUCTORS -----------------------------------------*/

// Default constructor.
inputReader::inputReader() {
// Call fast_io to optimize I/O speed
// TODO; put in later
// fast_io();

// TODO; put in later
} // inputReader()


Expand Down

0 comments on commit 3d72e33

Please sign in to comment.