1 | // LAF FreeType Wrapper |
---|---|
2 | // Copyright (c) 2017 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 FT_STREAM_H_INCLUDED |
8 | #define FT_STREAM_H_INCLUDED |
9 | #pragma once |
10 | |
11 | #include "ft/freetype_headers.h" |
12 | |
13 | #include <string> |
14 | |
15 | namespace ft { |
16 | |
17 | FT_Stream open_stream(const std::string& utf8Filename); |
18 | |
19 | } // namespace ft |
20 | |
21 | #endif |
22 |