blob: 387e03c70c14233005f15dc96eb9d1d75ce7bdd0 [file] [log] [blame]
// 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/enummemberadd/cpp/fidl.h> // nogncheck
namespace fidl_test = fidl::test::enummemberadd;
// [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 if (s == "yellow") {
return fidl_test::Color::YELLOW;
} 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";
case fidl_test::Color::YELLOW:
return "yellow";
default:
return "<unknown>";
}
}
// [END contents]
int main(int argc, const char** argv) { return 0; }