Main Page | Namespace List | Class Hierarchy | Alphabetical List | Class List | Directories | File List | Namespace Members | Class Members | File Members | Related Pages

vpn_NNI.cpp

Go to the documentation of this file.
00001 #include "vpnedit.h"
00002 #include "vpn_NNI.h"
00003 #include "vpn_NN.h"
00004 
00005 AVPN::AVPN( VPNNetNode * PNN ) : ANetNodeInstance( PNN ) {
00006     GUI = 0;
00007     RT = 0;
00008 }
00009 
00010 void AVPN::setSpecificAttribute( QString & , QString & ) {
00011 }
00012 
00013 void AVPN::saveSpecificAttribute( QTextStream & ) {
00014 }
00015 
00016 QWidget * AVPN::edit( QWidget * parent ) {
00017     GUI = new VPNEdit( parent );
00018     GUI->showData( Data );
00019     return GUI;
00020 }
00021 
00022 QString AVPN::acceptable( void ) {
00023     return ( GUI ) ? GUI->acceptable( ) : QString();
00024 }
00025 
00026 void AVPN::commit( void ) {
00027     if( GUI && GUI->commit( Data ) )
00028       setModified( 1 );
00029 }
00030 

Generated on Sat Nov 5 16:17:56 2005 for OPIE by  doxygen 1.4.2