~drizzle-trunk/drizzle/development

« back to all changes in this revision

Viewing changes to drizzled/alter_info.h

  • Committer: Mark Atwood
  • Date: 2011-06-27 19:01:37 UTC
  • mfrom: (2318.6.90 refactor16)
  • Revision ID: me@mark.atwood.name-20110627190137-iflt3vku0kw77l8a
mergeĀ lp:~olafvdspek/drizzle/refactor17

Show diffs side-by-side

added added

removed removed

Lines of Context:
65
65
 * This structure contains a list of columns or indexes to be created,
66
66
 * altered or dropped.
67
67
 */
68
 
class AlterInfo
 
68
class AlterInfo : boost::noncopyable
69
69
{
70
70
public:
71
71
  typedef std::list<AlterColumn> alter_list_t;
79
79
  bool error_if_not_empty;
80
80
 
81
81
  AlterInfo();
82
 
  AlterInfo(const AlterInfo &rhs, memory::Root *mem_root);
83
 
private:
84
 
  AlterInfo &operator=(const AlterInfo &rhs); // not implemented
85
 
  AlterInfo(const AlterInfo &rhs);            // not implemented
 
82
  AlterInfo(const AlterInfo&, memory::Root*);
86
83
};
87
84
 
88
85
} /* namespace drizzled */