mirror of
https://github.com/XTXMarkets/ternfs.git
synced 2025-12-30 15:30:28 -06:00
11 lines
234 B
C++
11 lines
234 B
C++
#pragma once
|
|
|
|
#include "Msgs.hpp"
|
|
#include <limits>
|
|
#include <string>
|
|
|
|
class CDCDBTools {
|
|
public:
|
|
static void outputLogEntries(const std::string& dbPath, LogIdx startIdx = 0, size_t count = std::numeric_limits<size_t>::max());
|
|
};
|