packages/modules/Bluetooth/system/gd/dumpsys/test_data/root.h

18 lines
389 B
C
Raw Permalink Normal View History

2025-08-25 08:38:42 +08:00
#pragma once
#include "flatbuffers/flatbuffers.h"
#include "root_generated.h"
using TableAddFunction = std::function<void(testing::DumpsysTestDataRootBuilder* root_builder)>;
namespace testing {
struct DumpsysTestDataClass {
virtual TableAddFunction GetTable(flatbuffers::FlatBufferBuilder& fb_builder) = 0;
virtual ~DumpsysTestDataClass() = default;
};
} // namespace testing