48 lines
1.3 KiB
C++
48 lines
1.3 KiB
C++
// -*- C++ -*-
|
|
//
|
|
// This file is part of the Coriolis Software.
|
|
// Copyright (c) UPMC 2009-2019, All Rights Reserved
|
|
//
|
|
// +-----------------------------------------------------------------+
|
|
// | C O R I O L I S |
|
|
// | H u r r i c a n e A n a l o g |
|
|
// | |
|
|
// | Authors : Christophe Alexandre |
|
|
// | E-mail : Jean-Paul.Chaput@lip6.fr |
|
|
// | =============================================================== |
|
|
// | C++ Module : "./FloatParameter.cpp" |
|
|
// +-----------------------------------------------------------------+
|
|
|
|
|
|
#include "hurricane/analog/FloatParameter.h"
|
|
|
|
|
|
namespace Analog {
|
|
|
|
using std::string;
|
|
|
|
|
|
string FloatParameter::_getTypeName () const
|
|
{ return "FloatParameter"; }
|
|
|
|
|
|
std::string FloatParameter::_getString () const
|
|
{
|
|
string s = Super::_getString();
|
|
s.insert( s.size()-1, " "+getString(_value) );
|
|
return s;
|
|
}
|
|
|
|
|
|
Record* FloatParameter::_getRecord () const
|
|
{
|
|
Record* record = Super::_getRecord();
|
|
record->add( getSlot( "_value", &_value ) );
|
|
return record;
|
|
}
|
|
|
|
|
|
|
|
|
|
} // Analog namespace.
|