00001 #ifndef ASLINE_H 00002 #define ASLINE_H 00003 00004 #include <netnode.h> 00005 00006 // pure virtual (component oriented) interface of any 00007 // plugin that offers a line 00008 class AsLine : public RuntimeInfo { 00009 00010 public : 00011 00012 AsLine( ANetNodeInstance * NNI ) : 00013 RuntimeInfo( NNI ) { 00014 } 00015 00016 virtual QString deviceFile( void ) = 0; 00017 00018 }; 00019 00020 #endif
1.4.2