# Home    # nevrax.com   
Nevrax
Nevrax.org
#News
#Mailing-list
#Documentation
#CVS
#Bugs
#License
Docs
 
Documentation  
Main Page   Namespace List   Class Hierarchy   Alphabetical List   Compound List   File List   Namespace Members   Compound Members   File Members   Related Pages   Search  

type_unit.cpp

Go to the documentation of this file.
00001 
00007 /* Copyright, 2000 Nevrax Ltd.
00008  *
00009  * This file is part of NEVRAX NEL.
00010  * NEVRAX NEL is free software; you can redistribute it and/or modify
00011  * it under the terms of the GNU General Public License as published by
00012  * the Free Software Foundation; either version 2, or (at your option)
00013  * any later version.
00014 
00015  * NEVRAX NEL is distributed in the hope that it will be useful, but
00016  * WITHOUT ANY WARRANTY; without even the implied warranty of
00017  * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
00018  * General Public License for more details.
00019 
00020  * You should have received a copy of the GNU General Public License
00021  * along with NEVRAX NEL; see the file COPYING. If not, write to the
00022  * Free Software Foundation, Inc., 59 Temple Place - Suite 330, Boston,
00023  * MA 02111-1307, USA.
00024  */
00025 
00026 #include "stdgeorges.h"
00027 #include "nel/georges/type_unit.h"
00028 
00029 namespace NLGEORGES
00030 {
00031 
00033 // Construction/Destruction
00035 
00036 CTypeUnit::CTypeUnit( const CStringEx _sxll, const CStringEx _sxhl, const CStringEx _sxdv, const CStringEx _sxf )
00037 {
00038         sxlowlimit = _sxll;
00039         sxhighlimit = _sxhl;
00040         sxdefaultvalue = _sxdv;
00041         sxformula = _sxf;
00042 }
00043 
00044 CTypeUnit::~CTypeUnit()
00045 {
00046 }
00047 
00048 CStringEx CTypeUnit::GetFormula() const
00049 {
00050         return  sxformula;
00051 }
00052 
00053 CStringEx CTypeUnit::GetDefaultValue() const
00054 {
00055         return  sxdefaultvalue;
00056 }
00057 
00058 CStringEx CTypeUnit::GetLowLimit() const
00059 {
00060         return  sxlowlimit;
00061 }
00062 
00063 CStringEx CTypeUnit::GetHighLimit() const                                                                                                       
00064 {
00065         return  sxhighlimit;
00066 }
00067 
00068 CStringEx CTypeUnit::Format( const CStringEx _sxvalue ) const
00069 {
00070         return( _sxvalue );
00071 }
00072                                                                         
00073 CStringEx CTypeUnit::CalculateResult( const CStringEx _sxbasevalue, const CStringEx _sxvalue ) const    
00074 {
00075         return( _sxbasevalue );
00076 }
00077 
00078 void CTypeUnit::SetDefaultValue( const CStringEx _sxdv )
00079 {
00080         sxdefaultvalue = _sxdv;
00081 }
00082 
00083 void CTypeUnit::SetLowLimit( const CStringEx _sxll )
00084 {
00085         sxlowlimit = _sxll;
00086 }
00087 
00088 void CTypeUnit::SetHighLimit( const CStringEx _sxhl )
00089 {
00090         sxhighlimit = _sxhl;
00091 }
00092 
00093 }