83 std::vector<CNormalFraction*>::const_iterator it = this->
mFractions.begin(), endit = this->
mFractions.end();
84 std::vector<CNormalFraction*>::const_iterator it2 = rhs.
mFractions.begin();
86 while (it != endit && smaller ==
true)
88 smaller = ((*it2) < (*it));
112 std::vector<CNormalFraction*>::iterator it = this->
mFractions.begin(), endit = this->
mFractions.end();
168 std::vector<CNormalFraction*>::const_iterator it = this->
mFractions.begin();
169 std::vector<CNormalFraction*>::const_iterator it2 = rhs.
mFractions.begin();
170 std::vector<CNormalFraction*>::const_iterator endit = this->
mFractions.end();
172 while (it != endit && result ==
true)
174 result = ((**it) == (**it2));
203 std::vector<CNormalFraction*>::iterator it = this->
mFractions.begin(), endit = this->
mFractions.end();
212 std::vector<CNormalFraction*>::const_iterator it2 = set.begin(), endit2 = set.end();
214 while (it2 != endit2)
223 std::ostringstream os;
224 os << this->
mName <<
"(";
225 std::vector<CNormalFraction*>::const_iterator it = this->
mFractions.begin(), endit = this->
mFractions.end();
245 std::vector<CNormalFraction*>::iterator it = this->
mFractions.begin(), endit = this->
mFractions.end();
virtual std::string toString() const
bool operator<(const CNormalCall &rhs) const
const std::string & getName() const
CNormalCall & operator=(const CNormalCall &src)
const std::vector< CNormalFraction * > & getFractions() const
void setName(const std::string &name)
std::vector< CNormalFraction * > mFractions
std::ostream & operator<<(std::ostream &os, const CNormalCall &d)
bool add(const CNormalFraction &fraction)
void setFractions(const std::vector< CNormalFraction * > &set)
bool operator==(const CNormalCall &rhs) const
virtual CNormalBase * copy() const