Files
icarus/include/database/base_repository.h
T
2019-08-18 16:15:47 -04:00

20 lines
293 B
C++

#ifndef BASE_REPOSITORY_H_
#define BASE_REPOSITORY_H_
#include<string>
#include <mysql/mysql.h>
#include "models.h"
class base_repository
{
public:
MYSQL* setup_mysql_connection(database_connection);
MYSQL_RES* perform_mysql_query(MYSQL*, const std::string&);
private:
};
#endif