blob: bf2fb819d2cb6e61301cc6b6a3afd87b4fb27d3f [file] [log] [blame]
// Copyright 2020 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/protocolmethodadd/cpp/fidl.h> // nogncheck
namespace fidl_test = fidl::test::protocolmethodadd;
// [START contents]
class Server : public fidl_test::Example {
void ExistingMethod() final {}
};
void client(fidl_test::ExamplePtr client) { client->ExistingMethod(); }
// [END contents]
int main(int argc, const char** argv) { return 0; }