// Copyright 2018 The Chromium Authors // Use of this source code is governed by a BSD-style license that can be // found in the LICENSE file. #ifndef NET_TOOLS_HUFFMAN_TRIE_TRIE_TRIE_WRITER_H_ #define NET_TOOLS_HUFFMAN_TRIE_TRIE_TRIE_WRITER_H_ #include <vector> #include "net/tools/huffman_trie/bit_writer.h" #include "net/tools/huffman_trie/huffman/huffman_builder.h" #include "net/tools/huffman_trie/trie_entry.h" namespace net::huffman_trie { enum : uint8_t { … }; class TrieWriter { … }; } // namespace net::huffman_trie #endif // NET_TOOLS_HUFFMAN_TRIE_TRIE_TRIE_WRITER_H_