00001 00002 // Name: common_ch_control_base.cpp 00003 // Purpose: 00004 // Author: NDA 00005 // Modified by: 00006 // Created: 11/01/2007 15:09:37 00007 // RCS-ID: 00008 // Copyright: CAEN S.p.A All rights reserved. 00009 // Licence: 00011 00012 #if defined(__GNUG__) && !defined(NO_GCC_PRAGMA) 00013 #pragma implementation "common_ch_control_base.h" 00014 #endif 00015 00016 // For compilers that support precompilation, includes "wx/wx.h". 00017 #include "wx/wxprec.h" 00018 00019 #ifdef __BORLANDC__ 00020 #pragma hdrstop 00021 #endif 00022 00023 #ifndef WX_PRECOMP 00024 #include "wx/wx.h" 00025 #endif 00026 00027 #include "common_ch_control_base.h" 00028 00033 IMPLEMENT_DYNAMIC_CLASS( CommonChControlBase, wxPanel ) 00034 00035 00043 CommonChControlBase::CommonChControlBase( ) 00044 { 00045 } 00046 00047 CommonChControlBase::CommonChControlBase( wxWindow* parent, wxWindowID id, const wxPoint& pos, const wxSize& size, long style ) 00048 { 00049 } 00050 00051 void CommonChControlBase::SetMediumLabel( double value) 00052 { 00053 } 00054 void CommonChControlBase::SetOverloadBackground( const wxColor& color) 00055 { 00056 } 00057 void CommonChControlBase::SetEnable( bool enable) 00058 { 00059 } 00060
1.4.6-NO