library-manager/api/isbn-interaction.h
SuperNovaa41 e51dc21e67 Separates the isbn-lookup interactions into its own file
This is prepping for adding more features, as i want the actual
functions that are interaction with the `isbn` tool to be separate
2024-01-22 15:12:28 -05:00

24 lines
576 B
C++

#ifndef ISBN_INTERACTION_H
#define ISBN_INTERACTION_H
/**
* std::string book_vec_to_json
* std::vector<std::string> headers - Vector of strings that contain the type information of the data
* std::vector<std::string> book - Vector of strings that contain the data
*
* Helper function that converts a vector of book data into a json format
*/
std::string book_vec_to_json(std::vector<std::string> headers, std::vector<std::string> book);
/**
* std::string get_all_books
*
* This will return all the currently saved books.
*/
std::string get_all_books();
#endif