]> git.proxmox.com Git - ceph.git/blob - ceph/src/crimson/os/seastore/collection_manager.cc
import quincy beta 17.1.0
[ceph.git] / ceph / src / crimson / os / seastore / collection_manager.cc
1 // -*- mode:C++; tab-width:8; c-basic-offset:2; indent-tabs-mode:t -*-
2 // vim: ts=8 sw=2 smarttab
3 //
4 #include "crimson/os/seastore/collection_manager.h"
5 #include "crimson/os/seastore/transaction_manager.h"
6 #include "crimson/os/seastore/collection_manager/flat_collection_manager.h"
7
8 namespace crimson::os::seastore::collection_manager {
9
10 CollectionManagerRef create_coll_manager(TransactionManager &trans_manager) {
11 return CollectionManagerRef(new FlatCollectionManager(trans_manager));
12 }
13
14 }