/
ihtiandr9
/
httpserver
Обзор
Документация
Войти
/
ihtiandr9
/
httpserver
Код
Запросы
0
Задачи
Вики
Пакеты
0
Релизы
0
CI/CD
Аналитика
Безопасность
class-stylesheet
cpp/src/dbclient.h
21 строка
318 B
Sergey Ryabchenkov(fvds)
use forward declaration instead of include in headers
28 авг 2025, 18:41
28 авг 2025, 18:41
d441825
Код
Авторство
О чём код?
#ifndef H_DBCLIENT_H #define H_DBCLIENT_H #define INDENT " " #ifdef __cplusplus extern "C" { #endif typedef struct pg_conn PGconn; #ifdef __cplusplus } #endif #define default_dbhost "localhost"; PGconn* dbconn(); void dbclose(); int dbopen(const char* host, const char* passwd); std::string dbreport(); #endif