chromium/third_party/puffin/src/include/puffin/huffer.h

// Copyright 2017 The Chromium OS 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_INCLUDE_PUFFIN_HUFFER_H_
#define SRC_INCLUDE_PUFFIN_HUFFER_H_

#include <cstddef>
#include <memory>

#include "puffin/common.h"

namespace puffin {

class BitWriterInterface;
class PuffReaderInterface;
class HuffmanTable;

class Huffer {};

}  // namespace puffin

#endif  // SRC_INCLUDE_PUFFIN_HUFFER_H_