| // WARNING: This file is machine generated by fidlgen. |
| |
| #pragma once |
| |
| #include <test/unknowninteractions/cpp/fidl.h> |
| namespace test { |
| namespace unknowninteractions { |
| namespace testing { |
| class Example_TestBase : public ::test::unknowninteractions::Example { |
| public: |
| virtual ~Example_TestBase() {} |
| virtual void NotImplemented_(const std::string& name) = 0; |
| void StrictOneWay() override { NotImplemented_("StrictOneWay"); } |
| void FlexibleOneWay() override { NotImplemented_("FlexibleOneWay"); } |
| void StrictTwoWay(StrictTwoWayCallback callback) override { |
| NotImplemented_("StrictTwoWay"); |
| } |
| void FlexibleTwoWay(FlexibleTwoWayCallback callback) override { |
| NotImplemented_("FlexibleTwoWay"); |
| } |
| }; |
| } // namespace testing |
| } // namespace unknowninteractions |
| } // namespace test |