Flutter Impeller
include_dir.h
Go to the documentation of this file.
1 // Copyright 2013 The Flutter Authors. All rights reserved.
2 // Use of this source code is governed by a BSD-style license that can be
3 // found in the LICENSE file.
4 
5 #ifndef FLUTTER_IMPELLER_COMPILER_INCLUDE_DIR_H_
6 #define FLUTTER_IMPELLER_COMPILER_INCLUDE_DIR_H_
7 
8 #include <memory>
9 #include <string>
10 
11 #include "flutter/fml/unique_fd.h"
12 
13 namespace impeller {
14 namespace compiler {
15 
16 struct IncludeDir {
17  std::shared_ptr<fml::UniqueFD> dir;
18  std::string name;
19 };
20 
21 } // namespace compiler
22 } // namespace impeller
23 
24 #endif // FLUTTER_IMPELLER_COMPILER_INCLUDE_DIR_H_
std::shared_ptr< fml::UniqueFD > dir
Definition: include_dir.h:17