mirror of
https://github.com/RGBCube/serenity
synced 2025-10-28 05:42:34 +00:00
This was done with CLion's automatic rename feature and with:
find . -name ClientConnection.h
| rename 's/ClientConnection\.h/ConnectionFromClient.h/'
find . -name ClientConnection.cpp
| rename 's/ClientConnection\.cpp/ConnectionFromClient.cpp/'
13 lines
221 B
C++
13 lines
221 B
C++
/*
|
|
* Copyright (c) 2021, Jan de Visser <jan@de-visser.net>
|
|
*
|
|
* SPDX-License-Identifier: BSD-2-Clause
|
|
*/
|
|
|
|
#pragma once
|
|
|
|
namespace SQLServer {
|
|
class ConnectionFromClient;
|
|
class DatabaseConnection;
|
|
class SQLStatement;
|
|
}
|