29#ifndef _JAULA_VALUE_NUMBER_H_
30#define _JAULA_VALUE_NUMBER_H_
32#include <jaula/jaula_value.h>
80 virtual void repr(std::ostream &ostr)
const;
87 void set(
double data);
class for incompatible data type exceptions
Definition jaula_bad_data_type.h:53
Class for handling numeric values.
Definition jaula_value_number.h:52
virtual void repr(std::ostream &ostr) const
Represents the instance in a stream.
Definition jaula_value_number.cc:55
virtual ~Value_Number()
Destructor.
Definition jaula_value_number.cc:47
void set(double data)
Establishes the contents of the instance.
Definition jaula_value_number.cc:60
double getData(void) const
Retrieves the value contained by the instance.
Definition jaula_value_number.cc:50
double data_
Container to hold the value itself.
Definition jaula_value_number.h:105
Value_Number(double data=0)
Constructor.
Definition jaula_value_number.cc:42
Base class for handling values.
Definition jaula_value.h:53
Namespace for all library definitions.
Definition jaula.h:439