Following what happened to others: we can now include memtable.hh without including database.hh Signed-off-by: Glauber Costa <glommer@cloudius-systems.com>
26 lines
349 B
C++
26 lines
349 B
C++
/*
|
|
* Copyright 2015 Cloudius Systems
|
|
*/
|
|
|
|
#pragma once
|
|
|
|
// database.hh
|
|
class database;
|
|
|
|
// mutation.hh
|
|
class mutation;
|
|
class mutation_partition;
|
|
|
|
// schema.hh
|
|
class schema;
|
|
class column_definition;
|
|
|
|
// keys.hh
|
|
class exploded_clustering_prefix;
|
|
class partition_key;
|
|
class clustering_key;
|
|
class clustering_key_prefix;
|
|
|
|
// memtable.hh
|
|
class memtable;
|