1 // Copyright 2018 The Fuchsia 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 // The definitions corresponding to the declarations in this file are
6 // automatically generated by the build system.  See rules.mk for the
7 // gory details.
8 
9 #include <map>
10 #include <string>
11 
12 #ifndef ZIRCON_SYSTEM_UTEST_FIDL_COMPILER_EXAMPLES_H
13 #define ZIRCON_SYSTEM_UTEST_FIDL_COMPILER_EXAMPLES_H
14 
15 class Examples {
16 public:
map()17     static std::map<std::string, std::string>& map() { return map_; }
18 
19 private:
20     static std::map<std::string, std::string> map_;
21 };
22 
23 #endif // ZIRCON_SYSTEM_UTEST_FIDL_COMPILER_EXAMPLES_H
24