1// LAF Base Library
2// Copyright (c) 2015-2016 David Capello
3//
4// This file is released under the terms of the MIT license.
5// Read LICENSE.txt for more information.
6
7#ifndef BASE_BUFFER_H_INCLUDED
8#define BASE_BUFFER_H_INCLUDED
9#pragma once
10
11#include "base/ints.h"
12#include <vector>
13
14namespace base {
15
16typedef std::vector<uint8_t> buffer;
17
18} // namespace base
19
20#endif
21