~drizzle-trunk/drizzle/development

« back to all changes in this revision

Viewing changes to drizzled/constrained_value.h

  • Committer: Lee Bieber
  • Date: 2010-12-02 20:07:39 UTC
  • mfrom: (1968.1.3 build)
  • Revision ID: kalebral@gmail.com-20101202200739-w4el9ey7b4m5laug
Merge Vijay - Merge refactor of bool type sys_vars to the new system
Merge Monty - fix bug 683842: remove generic catch blocks       
Merge Monty sys_var cleanup for haildb

Show diffs side-by-side

added added

removed removed

Lines of Context:
80
80
    return set_value(rhs);
81
81
  }
82
82
 
83
 
  T getVal() const
 
83
  T get() const
84
84
  {
85
85
    return m_val;
86
86
  }
103
103
  friend
104
104
  std::ostream& operator<<(std::ostream& os, const constrained_value<T>& v)
105
105
  {
106
 
    os << v.getVal();
 
106
    os << v.get();
107
107
    return os;
108
108
  }
109
109
};
176
176
protected:
177
177
  constrained_value<T>& set_value(const constrained_value<T>& rhs)
178
178
  {
179
 
    return set_value(rhs.getVal());
 
179
    return set_value(rhs.get());
180
180
  }
181
181
 
182
182
  constrained_value<T>& set_value(T rhs)