~drizzle-trunk/drizzle/development

« back to all changes in this revision

Viewing changes to drizzled/dtcollation.h

  • Committer: Olaf van der Spek
  • Date: 2011-08-12 16:41:20 UTC
  • mto: This revision was merged to the branch mainline in revision 2398.
  • Revision ID: olafvdspek@gmail.com-20110812164120-uu21idtt9a9sa92e
cppcheck

Show diffs side-by-side

added added

removed removed

Lines of Context:
27
27
class DRIZZLED_API DTCollation
28
28
{
29
29
public:
30
 
  const charset_info_st *collation;
31
 
  enum Derivation derivation;
 
30
  const charset_info_st* collation;
 
31
  Derivation derivation;
32
32
 
33
33
  DRIZZLED_LOCAL DTCollation();
34
 
  DRIZZLED_LOCAL DTCollation(const charset_info_st * const collation_arg,
35
 
                             Derivation derivation_arg);
 
34
  DRIZZLED_LOCAL DTCollation(const charset_info_st*, Derivation);
36
35
  void set(DTCollation &dt);
37
 
  void set(const charset_info_st * const collation_arg,
38
 
           Derivation derivation_arg);
39
 
  void set(const charset_info_st * const collation_arg);
 
36
  void set(const charset_info_st*, Derivation);
 
37
  void set(const charset_info_st*);
40
38
  void set(Derivation derivation_arg);
41
39
  bool set(DTCollation &dt1, DTCollation &dt2, uint32_t flags= 0);
42
40