Files
scylladb/database_fwd.hh
Glauber Costa 2174285c31 db: move memtable definition to its own file
Following what happened to others: we can now include memtable.hh
without including database.hh

Signed-off-by: Glauber Costa <glommer@cloudius-systems.com>
2015-05-17 12:38:32 +03:00

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;