normalize includes: common

This commit is contained in:
brainiac
2025-12-17 09:32:44 -08:00
committed by Alex
parent 723ca13482
commit 451eb0806a
295 changed files with 1592 additions and 2009 deletions
+3 -13
View File
@@ -1,14 +1,9 @@
#ifndef MYSQL_REQUEST_ROW_H
#define MYSQL_REQUEST_ROW_H
#pragma once
#ifdef _WINDOWS
#include <winsock2.h>
#include <windows.h>
#endif
#include "common/types.h"
#include <mysql.h>
#include "mysql.h"
#include <iterator>
#include "types.h"
class MySQLRequestRow
{
@@ -36,9 +31,4 @@ public:
bool operator!=(const MySQLRequestRow& rhs);
MySQLRequestRow operator*();
char* operator[](int index);
};
#endif