WvStreams
wvstreamex5.cc
1/*
2 * A WvStream example.
3 *
4 * Some text about this example...
5 */
6
7#include <wvstream.h>
8
9int main()
10{
11 wvcon->autoforward(*wvcon);
12
13 while (wvcon->isok())
14 {
15 if (wvcon->select(-1))
16 wvcon->callback();
17 }
18}