#ifndef COMMON_BINARYSTREAM_H_
#define COMMON_BINARYSTREAM_H_
#include <stdint.h>
#include <cstddef>
#include <string>
#include <vector>
#include "common/PackedEnums.h"
#include "common/angleutils.h"
#include "common/mathutil.h"
namespace gl
{
template <typename IntT>
struct PromotedIntegerType
{ … };
class BinaryInputStream : angle::NonCopyable
{ … };
class BinaryOutputStream : angle::NonCopyable
{ … };
inline BinaryOutputStream::BinaryOutputStream() { … }
inline BinaryOutputStream::~BinaryOutputStream() = default;
}
#endif