diff options
Diffstat (limited to 'vio/Vio.cc')
-rw-r--r-- | vio/Vio.cc | 23 |
1 files changed, 23 insertions, 0 deletions
diff --git a/vio/Vio.cc b/vio/Vio.cc new file mode 100644 index 00000000000..b15f9cfa6d2 --- /dev/null +++ b/vio/Vio.cc @@ -0,0 +1,23 @@ +/* +** Virtual I/O library +** Written by Andrei Errapart <andreie@no.spam.ee> +*/ + +#ifdef __GNUC__ +#pragma implementation // gcc: Class implementation +#endif +#include "vio-global.h" + +VIO_NS_BEGIN + +void +Vio::release() +{ + delete this; +} + +Vio::~Vio() +{ +} + +VIO_NS_END |