cIntParImpl Class Reference¶

API: cIntParImpl Class Reference
API
cIntParImpl Class Reference
Inheritance diagram for cIntParImpl:
[legend]

Public Member Functions

Constructors, destructor, assignment.
 cIntParImpl ()
 cIntParImpl (const cIntParImpl &other)
virtual ~cIntParImpl ()
void operator= (const cIntParImpl &otherpar)
Redefined cObject member functions
virtual cIntParImpldup () const override
Redefined cParImpl setter functions.
virtual void setBoolValue (bool b) override
virtual void setIntValue (intval_t l) override
virtual void setDoubleValue (double d) override
virtual void setStringValue (const char *s) override
virtual void setObjectValue (cObject *object) override
virtual void setXMLValue (cXMLElement *node) override
virtual void setExpression (cExpression *e) override
Redefined cParImpl getter functions.
virtual bool boolValue (cComponent *context, const cPar *targetPar) const override
virtual intval_t intValue (cComponent *context, const cPar *targetPar) const override
virtual double doubleValue (cComponent *context, const cPar *targetPar) const override
virtual const char * stringValue (cComponent *context, const cPar *targetPar) const override
virtual std::string stdstringValue (cComponent *context, const cPar *targetPar) const override
virtual cObjectobjectValue (cComponent *context, const cPar *targetPar) const override
virtual cXMLElementxmlValue (cComponent *context, const cPar *targetPar) const override
virtual cExpressiongetExpression () const override
Type, prompt text, input flag, change flag.
virtual Type getType () const override
virtual bool isNumeric () const override
Redefined cParImpl misc functions.
virtual void convertToConst (cComponent *context, const cPar *targetPar) override
virtual std::string str () const override
virtual std::string unparse () const override
virtual void parse (const char *text, FileLine loc, const cPar *targetPar) override
virtual int compare (const cParImpl *other) const override
Public Member Functions inherited from cParImpl
 cParImpl ()
 cParImpl (const cParImpl &other)
virtual ~cParImpl ()
cParImploperator= (const cParImpl &otherpar)
virtual void parsimPack (cCommBuffer *buffer) const override
virtual void parsimUnpack (cCommBuffer *buffer) override
virtual bool isVolatile () const
virtual bool isMutable () const
virtual bool isExpression () const
virtual bool isShared () const
virtual bool containsValue () const
virtual bool isSet () const
virtual void setIsVolatile (bool f)
virtual void setIsMutable (bool f)
virtual void setIsShared (bool f)
virtual void setIsSet (bool f)
virtual const char * getUnit () const
virtual void setUnit (const char *s)
virtual const char * getBaseDirectory () const
virtual void setBaseDirectory (const char *s)
virtual void setSourceLocation (const FileLine &loc)
virtual void clearSourceLocation ()
virtual const FileLinegetSourceLocation () const
virtual void setStringValue (const std::string &s)
virtual void forEachChild (cVisitor *v, cComponent *context)
virtual void forEachChild (cVisitor *v)
Public Member Functions inherited from cNamedObject
 cNamedObject ()
 cNamedObject (const char *name, bool namepooling=true)
 cNamedObject (const cNamedObject &obj)
virtual ~cNamedObject ()
cNamedObjectoperator= (const cNamedObject &o)
virtual void setName (const char *s)
virtual const char * getName () const override
virtual void setNamePooling (bool b)
virtual bool getNamePooling ()
Public Member Functions inherited from cObject
 cObject ()
 cObject (const cObject &other)=default
virtual ~cObject ()
virtual const char * getClassName () const
bool isName (const char *s) const
virtual const char * getFullName () const
virtual std::string getFullPath () const
virtual std::string getClassAndFullName () const
virtual std::string getClassAndFullPath () const
const cObjectgetThisPtr () const
virtual std::ostream & printOn (std::ostream &os) const
virtual cObjectgetOwner () const
virtual bool isOwnedObject () const
virtual bool isSoftOwner () const
cObjectfindObject (const char *name, bool deep=true)
virtual cClassDescriptorgetDescriptor () const
void copyNotSupported () const

Additional Inherited Members

Static Public Member Functions inherited from cParImpl
static long getTotalParImplObjectCount ()
static long getLiveParImplObjectCount ()
static void resetParImplObjectCounters ()
static cParImplcreateWithType (Type type)
Protected Member Functions inherited from cObject
virtual void take (cOwnedObject *obj)
virtual void drop (cOwnedObject *obj)
void dropAndDelete (cOwnedObject *obj)

Description

A cParImpl subclass that stores an integer module/channel parameter.

Constructor & Destructor Documentation

◆ cIntParImpl() [1/2]

cIntParImpl ( )
explicit

Constructor.

Referenced by cIntParImpl(), dup(), and operator=().

◆ cIntParImpl() [2/2]

cIntParImpl ( const cIntParImpl & other)
inline

Copy constructor.

References cIntParImpl(), and cParImpl::cParImpl().

◆ ~cIntParImpl()

virtual ~cIntParImpl ( )
virtual

Destructor.

Member Function Documentation

◆ operator=()

void operator= ( const cIntParImpl & otherpar)

Assignment operator.

References cIntParImpl().

◆ dup()

virtual cIntParImpl * dup ( ) const
inlineoverridevirtual

Creates and returns an exact copy of this object.

Reimplemented from cParImpl.

References cIntParImpl().

◆ setBoolValue()

virtual void setBoolValue ( bool b)
overridevirtual

Raises an error: cannot convert bool to integer.

Implements cParImpl.

◆ setIntValue()

virtual void setIntValue ( intval_t l)
overridevirtual

Sets the value to the given integer.

Implements cParImpl.

◆ setDoubleValue()

virtual void setDoubleValue ( double d)
overridevirtual

Converts from double.

Implements cParImpl.

◆ setStringValue()

virtual void setStringValue ( const char * s)
overridevirtual

Raises an error: cannot convert string to integer.

Implements cParImpl.

◆ setObjectValue()

virtual void setObjectValue ( cObject * object)
overridevirtual

Raises an error: cannot convert object to integer.

Implements cParImpl.

References cObject::cObject().

◆ setXMLValue()

virtual void setXMLValue ( cXMLElement * node)
overridevirtual

Raises an error: cannot convert XML to integer.

Implements cParImpl.

◆ setExpression()

virtual void setExpression ( cExpression * e)
overridevirtual

Sets the value to the given expression. This object will assume the responsibility to delete the expression object.

Implements cParImpl.

◆ boolValue()

virtual bool boolValue ( cComponent * context,
const cPar * targetPar ) const
overridevirtual

Raises an error: cannot convert integer to bool.

Implements cParImpl.

◆ intValue()

virtual intval_t intValue ( cComponent * context,
const cPar * targetPar ) const
overridevirtual

Returns the value of the parameter.

Implements cParImpl.

◆ doubleValue()

virtual double doubleValue ( cComponent * context,
const cPar * targetPar ) const
overridevirtual

Converts the value to double.

Implements cParImpl.

◆ stringValue()

virtual const char * stringValue ( cComponent * context,
const cPar * targetPar ) const
overridevirtual

Raises an error: cannot convert integer to string.

Implements cParImpl.

◆ stdstringValue()

virtual std::string stdstringValue ( cComponent * context,
const cPar * targetPar ) const
overridevirtual

Raises an error: cannot convert integer to string.

Implements cParImpl.

◆ objectValue()

virtual cObject * objectValue ( cComponent * context,
const cPar * targetPar ) const
overridevirtual

Raises an error: cannot convert integer to object.

Implements cParImpl.

References cObject::cObject().

◆ xmlValue()

virtual cXMLElement * xmlValue ( cComponent * context,
const cPar * targetPar ) const
overridevirtual

Raises an error: cannot convert integer to XML.

Implements cParImpl.

◆ getExpression()

virtual cExpression * getExpression ( ) const
overridevirtual

Returns pointer to the expression stored by the object, or nullptr.

Implements cParImpl.

◆ getType()

virtual Type getType ( ) const
overridevirtual

Returns INT.

Implements cParImpl.

◆ isNumeric()

virtual bool isNumeric ( ) const
overridevirtual

Returns true.

Implements cParImpl.

◆ convertToConst()

virtual void convertToConst ( cComponent * context,
const cPar * targetPar )
overridevirtual

Replaces for non-const values, replaces the stored expression with its evaluation.

Implements cParImpl.

◆ str()

virtual std::string str ( ) const
overridevirtual

Returns the value in text form.

Reimplemented from cObject.

◆ unparse()

virtual std::string unparse ( ) const
overridevirtual

Returns the value in text form.

Implements cParImpl.

◆ parse()

virtual void parse ( const char * text,
FileLine loc,
const cPar * targetPar )
overridevirtual

Converts from text.

Implements cParImpl.

◆ compare()

virtual int compare ( const cParImpl * other) const
overridevirtual

Object comparison.

Reimplemented from cParImpl.

References cParImpl::cParImpl().