WvStreams
wvstreamex5.cc
00001 /*
00002  * A WvStream example.
00003  *
00004  * Some text about this example...
00005  */
00006 
00007 #include <wvstream.h>
00008 
00009 int main()
00010 {
00011     wvcon->autoforward(*wvcon);
00012 
00013     while (wvcon->isok())
00014     {
00015         if (wvcon->select(-1))
00016             wvcon->callback();
00017     }
00018 }