WvStreams
wvloopback.h
1 /* -*- Mode: C++ -*-
2  * Worldvisions Weaver Software:
3  * Copyright (C) 1997-2002 Net Integration Technologies, Inc.
4  *
5  */
6 #ifndef __WVLOOPBACK_H
7 #define __WVLOOPBACK_H
8 
9 #include "wvfdstream.h"
10 
16 class WvLoopback : public WvFDStream
17 {
18 public:
19  WvLoopback();
20 
21 public:
22  const char *wstype() const { return "WvLoopback"; }
23 };
24 
25 #endif // __WVLOOPBACK_H
WvFdStream
Base class for streams built on Unix file descriptors.
Definition: wvfdstream.h:20
WvLoopback
Implementation of a WvLoopback stream.
Definition: wvloopback.h:16