mirror of
https://github.com/MariaDB/server.git
synced 2025-01-19 05:22:25 +01:00
19 lines
250 B
C++
19 lines
250 B
C++
|
|
||
|
/*
|
||
|
** Virtual I/O library
|
||
|
** Written by Andrei Errapart <andreie@no.spam.ee>
|
||
|
*/
|
||
|
|
||
|
#include "vio-global.h"
|
||
|
#ifdef __GNUC__
|
||
|
#pragma implementation // gcc: Class implementation
|
||
|
#endif
|
||
|
|
||
|
VIO_NS_BEGIN
|
||
|
|
||
|
VioAcceptorFd::~VioAcceptorFd()
|
||
|
{
|
||
|
}
|
||
|
|
||
|
VIO_NS_END
|