]> Creatis software - cpPlugins.git/blob - lib/cpPlugins/BaseObjects/Widget.cxx
Architecture updated.
[cpPlugins.git] / lib / cpPlugins / BaseObjects / Widget.cxx
1 #include <cpPlugins/BaseObjects/Widget.h>
2
3 // -------------------------------------------------------------------------
4 itk::ModifiedTimeType cpPlugins::BaseObjects::Widget::
5 GetMTime( ) const
6 {
7   // Let time only be managed by itk -> synch issues when data is
8   // represented by vtk
9   return( this->itk::Object::GetMTime( ) );
10 }
11
12 // -------------------------------------------------------------------------
13 bool cpPlugins::BaseObjects::Widget::
14 IsInteractive( )
15 {
16   return( true );
17 }
18
19 // -------------------------------------------------------------------------
20 cpPlugins::BaseObjects::Widget::
21 Widget( )
22   : Superclass( )
23 {
24   this->m_Parameters.ConfigureAsString( "Text" );
25   this->m_Parameters.SetString( "Text", "" );
26 }
27
28 // -------------------------------------------------------------------------
29 cpPlugins::BaseObjects::Widget::
30 ~Widget( )
31 {
32 }
33
34 // eof - $RCSfile$