| // WARNING: This file is machine generated by fidlgen. |
| |
| #pragma once |
| |
| namespace fidl_test_inheritance { |
| |
| class Super final { |
| Super() = delete; |
| |
| public: |
| class Foo final { |
| Foo() = delete; |
| |
| public: |
| using Protocol = ::fidl_test_inheritance::Super; |
| static constexpr bool kHasRequest = true; |
| static constexpr bool kHasResponse = true; |
| }; |
| }; |
| |
| class Sub final { |
| Sub() = delete; |
| |
| public: |
| class Foo final { |
| Foo() = delete; |
| |
| public: |
| using Protocol = ::fidl_test_inheritance::Sub; |
| static constexpr bool kHasRequest = true; |
| static constexpr bool kHasResponse = true; |
| }; |
| }; |
| } // namespace fidl_test_inheritance |