~drizzle-trunk/drizzle/development

« back to all changes in this revision

Viewing changes to drizzled/constrained_value.h

  • Committer: Lee Bieber
  • Date: 2010-11-04 20:54:08 UTC
  • mfrom: (1897.4.6 rip-plugin-sysvar)
  • Revision ID: kalebral@gmail.com-20101104205408-4er3prjgc1631mav
Merge Monty - Added a readonly sys_var_constrianed_value. Converted a few more options to use sys_var.

Show diffs side-by-side

added added

removed removed

Lines of Context:
93
93
  }
94
94
};
95
95
 
96
 
template<class T, uint64_t MAXVAL=UINT64_MAX, int64_t MINVAL=INT64_MIN, int ALIGN=1>
 
96
template<class T,
 
97
  T MAXVAL,
 
98
  T MINVAL, unsigned int ALIGN= 1>
97
99
class constrained_check :
98
100
  public constrained_value<T>
99
101
{