~drizzle-trunk/drizzle/development

« back to all changes in this revision

Viewing changes to drizzled/sql_list.h

  • Committer: Brian Aker
  • Date: 2008-10-30 05:49:59 UTC
  • mfrom: (520.4.29 devel)
  • Revision ID: brian@tangent.org-20081030054959-7tlt3rxzbtl1lyin
Merge Monty's work.

Show diffs side-by-side

added added

removed removed

Lines of Context:
17
17
 *  Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA  02110-1301  USA
18
18
 */
19
19
 
20
 
#ifndef INCLUDES_DRIZZLE_SQL_LIST_H
21
 
#define INCLUDES_DRIZZLE_SQL_LIST_H
 
20
#ifndef DRIZZLED_SQL_LIST_H
 
21
#define DRIZZLED_SQL_LIST_H
22
22
 
23
23
 
24
24
#include <utility>
25
25
#include <algorithm>
 
26
#include <drizzled/sql_alloc.h>
26
27
 
27
28
/** Struct to handle simple linked lists. */
28
29
typedef struct st_sql_list {
654
655
    it.replace(el->clone(mem_root));
655
656
}
656
657
 
657
 
#endif // INCLUDES_DRIZZLE_SQL_LIST_H
 
658
#endif // DRIZZLED_SQL_LIST_H