[validators] Move the btree node validator into a separate file.

This commit is contained in:
Joe Thornber
2015-08-11 11:58:07 +01:00
parent 5d28c05dc3
commit c32aaab028
5 changed files with 72 additions and 61 deletions

View File

@@ -0,0 +1,14 @@
#ifndef PERSISTENT_DATA_VALIDATORS_H
#define PERSISTENT_DATA_VALIDATORS_H
#include "block-cache/block_cache.h"
//----------------------------------------------------------------
namespace persistent_data {
bcache::validator::ptr create_btree_node_validator();
}
//----------------------------------------------------------------
#endif