| // Copyright 2021 The Fuchsia Authors. All rights reserved. |
| // Use of this source code is governed by a BSD-style license that can be |
| // found in the LICENSE file. |
| |
| #include <fidl/test/enummemberremove/cpp/fidl.h> // nogncheck |
| namespace fidl_test = fidl::test::enummemberremove; |
| |
| // [START contents] |
| fidl_test::Color writer(std::string s) { |
| if (s == "red") { |
| return fidl_test::Color::RED; |
| } else if (s == "blue") { |
| return fidl_test::Color::BLUE; |
| } else { |
| return fidl_test::Color::Unknown(); |
| } |
| } |
| |
| std::string reader(fidl_test::Color color) { |
| switch (color) { |
| case fidl_test::Color::RED: |
| return "red"; |
| case fidl_test::Color::BLUE: |
| return "blue"; |
| default: |
| return "<unknown>"; |
| } |
| } |
| // [END contents] |
| |
| int main(int argc, const char** argv) { return 0; } |