Boolean.cpp
Go to the documentation of this file.00001
00002
00003
00004
00005
00006
00007
00008
00009
00010
00011
00012
00013
00014
00015
00016
00017
00018
00019
00020
00021
00022
00023
00024
00025
00026
00027
00028
00029
00030 #include "config.h"
00031
00032 #include "Boolean.hpp"
00033
00034 using namespace mermaid::support::data;
00035
00036
00037
00038 Boolean * Boolean::clone()
00039 {
00040 return new Boolean (this->getType());
00041 };
00042
00043
00044 Boolean::Boolean() : DataValue()
00045 {
00046 type_ = BOOLEAN;
00047 boolValue_ = false;
00048 };
00049
00050 Boolean::Boolean (bool value) : DataValue()
00051 {
00052 type_ = BOOLEAN;
00053 setValue (value);
00054 };
00055
00056 void Boolean::setValue (bool value)
00057 {
00058 boolValue_ = value;
00059 isInitialized_ = true;
00060 };
00061
00062
00063 bool Boolean::getValue() const
00064 {
00065 return boolValue_;
00066 };
00067
00068
00069 Boolean::operator std::string() const
00070 {
00071 if (boolValue_ == true) {
00072 return "true";
00073 }
00074 else {
00075 return "false";
00076 }
00077 };