1// LAF Base Library
2// Copyright (c) 2018 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_PATHS_H_INCLUDED
8#define BASE_PATHS_H_INCLUDED
9#pragma once
10
11#include <string>
12#include <vector>
13
14namespace base {
15
16 typedef std::vector<std::string> paths;
17
18} // namespace base
19
20#endif
21