~clint-fewbar/drizzle/regex-policy-cache-limiter

« back to all changes in this revision

Viewing changes to drizzled/sql_sort.h

  • Committer: Clint Byrum
  • Date: 2012-03-15 18:05:43 UTC
  • mfrom: (2224.1.302 workspace)
  • Revision ID: clint@ubuntu.com-20120315180543-9jxxm4q10k3np2ws
merging with latest trunk

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 DRIZZLED_SQL_SORT_H
21
 
#define DRIZZLED_SQL_SORT_H
 
20
#pragma once
22
21
 
23
22
#include <unistd.h>
24
23
#include <drizzled/base.h>
 
24
#include <drizzled/common_fwd.h>
25
25
#include <drizzled/qsort_cmp.h>
26
26
 
27
 
namespace drizzled
28
 
{
29
 
 
30
 
namespace internal
31
 
{
32
 
typedef struct st_io_cache IO_CACHE;
33
 
}
34
 
 
35
 
class Field;
36
 
class Table;
37
 
class SortField;
 
27
namespace drizzled {
38
28
 
39
29
/*
40
30
   The structure sort_addon_field describes a fixed layout
92
82
 
93
83
} /* namespace drizzled */
94
84
 
95
 
#endif /* DRIZZLED_SQL_SORT_H */