22 if (intflag.empty() &&
35 out <<
"identify yourself: I am an FlagSavev1 Object" << endl;
46 int iret = FillIntFromPHFlag(flags);
47 iret += FillDoubleFromPHFlag(flags);
48 iret += FillFloatFromPHFlag(flags);
49 iret += FillCharFromPHFlag(flags);
56 int iret = PutIntToPHFlag(flags);
57 iret += PutDoubleToPHFlag(flags);
58 iret += PutFloatToPHFlag(flags);
59 iret += PutCharToPHFlag(flags);
67 map<string, int>::const_iterator iter;
68 const map<string, int> *intm = flags->
IntMap();
69 for (iter = intm->begin(); iter != intm->end(); ++iter)
71 intflag[iter->first] = iter->second;
79 map<string, double>::const_iterator iter;
80 const map<string, double> *intm = flags->
DoubleMap();
81 for (iter = intm->begin(); iter != intm->end(); ++iter)
83 doubleflag[iter->first] = iter->second;
91 map<string, float>::const_iterator iter;
92 const map<string, float> *intm = flags->
FloatMap();
93 for (iter = intm->begin(); iter != intm->end(); ++iter)
95 floatflag[iter->first] = iter->second;
103 map<string, string>::const_iterator iter;
104 const map<string, string> *intm = flags->
CharMap();
105 for (iter = intm->begin(); iter != intm->end(); ++iter)
107 string input(iter->second);
108 stringflag[iter->first] = input;
116 map<string, int>::const_iterator iter;
117 for (iter = intflag.begin(); iter != intflag.end(); ++iter)
127 map<string, double>::const_iterator iter;
128 for (iter = doubleflag.begin(); iter != doubleflag.end(); ++iter)
138 map<string, float>::const_iterator iter;
139 for (iter = floatflag.begin(); iter != floatflag.end(); ++iter)
149 map<string, string>::const_iterator iter;
150 for (iter = stringflag.begin(); iter != stringflag.end(); ++iter)
164 map<string, int>::const_iterator iter;
165 os <<
"Int Flags: " << endl;
166 for (iter = intflag.begin(); iter != intflag.end(); ++iter)
168 os << iter->first <<
": " << iter->second << endl;
176 if (doubleflag.empty())
180 map<string, double>::const_iterator iter;
181 os <<
"Double Flags: " << endl;
182 for (iter = doubleflag.begin(); iter != doubleflag.end(); ++iter)
184 os << iter->first <<
": " << iter->second << endl;
192 if (floatflag.empty())
196 map<string, float>::const_iterator iter;
197 os <<
"Float Flags: " << endl;
198 for (iter = floatflag.begin(); iter != floatflag.end(); ++iter)
200 os << iter->first <<
": " << iter->second << endl;
208 if (stringflag.empty())
212 map<string, string>::const_iterator iter;
213 os <<
"String Flags: " << endl;
214 for (iter = stringflag.begin(); iter != stringflag.end(); ++iter)
216 os << iter->first <<
": " << iter->second << endl;
int isValid() const
isValid returns non zero if object contains valid data
int FillDoubleFromPHFlag(const PHFlag *flags)
int FillCharFromPHFlag(const PHFlag *flags)
int PutIntToPHFlag(PHFlag *flags)
void PrintIntFlag(std::ostream &os) const
int PutCharToPHFlag(PHFlag *flags)
void PrintFloatFlag(std::ostream &os) const
std::map< std::string, float > floatflag
std::map< std::string, double > doubleflag
void identify(std::ostream &os=std::cout) const
int FillIntFromPHFlag(const PHFlag *flags)
void PrintDoubleFlag(std::ostream &os) const
std::map< std::string, std::string > stringflag
int PutFlagsBack(PHFlag *flags)
FlagSavev1 * clone() const
Virtual copy constructor.
int FillFloatFromPHFlag(const PHFlag *flags)
std::map< std::string, int > intflag
int PutDoubleToPHFlag(PHFlag *flags)
void PrintStringFlag(std::ostream &os) const
int PutFloatToPHFlag(PHFlag *flags)
int FillFromPHFlag(const PHFlag *flags)
virtual void set_IntFlag(const std::string &name, const int flag)
virtual void set_DoubleFlag(const std::string &name, const double flag)
virtual void set_CharFlag(const std::string &name, const std::string &flag)
virtual const std::map< std::string, int > * IntMap() const
virtual const std::map< std::string, std::string > * CharMap() const
virtual void set_FloatFlag(const std::string &name, const float flag)
virtual const std::map< std::string, double > * DoubleMap() const
virtual const std::map< std::string, float > * FloatMap() const