blob: 9de054b096e870d730de0212450263caa0adbf77 [file] [log] [blame]
// Copyright 2020 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_DEVELOPER_FORENSICS_FEEDBACK_DATA_SYSTEM_LOG_RECORDER_ENCODING_DECODER_H_
#define SRC_DEVELOPER_FORENSICS_FEEDBACK_DATA_SYSTEM_LOG_RECORDER_ENCODING_DECODER_H_
#include <string>
namespace forensics {
namespace feedback_data {
namespace system_log_recorder {
// Decodes data previously encoded via an Encoder.
//
// As an Encoder operates on a block, the Decoder needs to decode a whole block at once.
class Decoder {
public:
virtual ~Decoder(){};
virtual std::string Decode(const std::string& block) = 0;
};
} // namespace system_log_recorder
} // namespace feedback_data
} // namespace forensics
#endif // SRC_DEVELOPER_FORENSICS_FEEDBACK_DATA_SYSTEM_LOG_RECORDER_ENCODING_DECODER_H_