test_configwidget.cpp

Go to the documentation of this file.
00001 //--------------------------------------------------
00008 //--------------------------------------------------
00009 
00010 #include "test_configwidget.h"
00011 #include <iostream>
00012 
00013 namespace imedgine
00014 {
00015 
00016   //--------------------------------------------------
00017 
00018   TestConfigWidget::TestConfigWidget()
00019   {
00020     std::cout << "constructing test config widget" << std::endl;
00021     test_label_ = new QLabel("test", this);
00022   }
00023 
00024   //--------------------------------------------------
00025 
00026   TestConfigWidget::TestConfigWidget(TestConfigWidget const&)
00027   {
00028   }
00029 
00030   //--------------------------------------------------
00031 
00032   TestConfigWidget::~TestConfigWidget()
00033   {
00034     std::cout << "destroying test config widget" << std::endl;
00035   }
00036 
00037   //--------------------------------------------------
00038 
00039   TestConfigWidget& TestConfigWidget::operator = (TestConfigWidget const&)
00040   {
00041     return *this;
00042   }
00043 
00044   //--------------------------------------------------
00045   
00046   void TestConfigWidget::applyConfiguration()
00047   {
00048     std::cout << "applying configuration" << std::endl;
00049   }
00050   
00051   //--------------------------------------------------
00052   
00053   bool TestConfigWidget::showConfiguration()
00054   {
00055     return true;
00056   }
00057 } // namespace

Generated on Sun Aug 13 18:19:37 2006 for iMEDgine by  doxygen 1.4.6