ARPDAS_QNX6 1.0
DCnc.cc
Go to the documentation of this file.
00001 #include "DCnc.h"
00002 #include "nctable.h"
00003 #include "nortlib.h"
00004 
00005 nc_data_client::nc_data_client( int bufsize_in, int fast, int non_block )
00006     : data_client(bufsize_in, 1, 0 ) {
00007 }
00008 
00009 void nc_data_client::read() {
00010   data_client::read();
00011   nct_refresh();
00012 }
00013 
00014 void nc_data_client::operate() {
00015   tminitfunc();
00016   while ( !dc_quit ) {
00017     read();
00018   }
00019 }
 All Classes Files Functions Variables Typedefs Enumerations Enumerator Defines