blob: fa3e8ecf3e2c5d3d537e54b31f4fd0e65e33d098 [file] [log] [blame]
// Copyright 2021 The Fuchsia Authors. All rights reserved.
// Use of this source code is governed by a BSD-style license that can be
// found in the LICENSE file.
#ifndef SRC_SYS_TEST_MANAGER_DEBUG_DATA_ABSTRACT_DATA_PROCESSOR_H_
#define SRC_SYS_TEST_MANAGER_DEBUG_DATA_ABSTRACT_DATA_PROCESSOR_H_
#include <string>
#include "common.h"
class AbstractDataProcessor {
public:
virtual ~AbstractDataProcessor() = default;
virtual void ProcessData(std::string test_url, std::vector<DataSinkDump> vmo_vec) = 0;
};
#endif // SRC_SYS_TEST_MANAGER_DEBUG_DATA_ABSTRACT_DATA_PROCESSOR_H_