mirror of
https://github.com/MariaDB/server.git
synced 2025-01-16 03:52:35 +01:00
18 lines
250 B
C++
18 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
|