|
| 1 | +/*++ |
| 2 | +
|
| 3 | +Copyright (c) Microsoft. All rights reserved. |
| 4 | +
|
| 5 | +Module Name: |
| 6 | +
|
| 7 | + ContainerPortMapping.cpp |
| 8 | +
|
| 9 | +Abstract: |
| 10 | +
|
| 11 | + This file contains the implementation of the WinRT wrapper for the WSLC SDK ContainerPortMapping class. |
| 12 | +
|
| 13 | +--*/ |
| 14 | + |
| 15 | +#include "precomp.h" |
| 16 | +#include "ContainerPortMapping.h" |
| 17 | +#include "Microsoft.WSL.Containers.ContainerPortMapping.g.cpp" |
| 18 | + |
| 19 | +namespace winrt::Microsoft::WSL::Containers::implementation { |
| 20 | +ContainerPortMapping::ContainerPortMapping(uint16_t windowsPort, uint16_t containerPort, winrt::Microsoft::WSL::Containers::PortProtocol const& protocol) |
| 21 | +{ |
| 22 | + throw hresult_not_implemented(); |
| 23 | +} |
| 24 | +uint16_t ContainerPortMapping::WindowsPort() |
| 25 | +{ |
| 26 | + throw hresult_not_implemented(); |
| 27 | +} |
| 28 | +void ContainerPortMapping::WindowsPort(uint16_t value) |
| 29 | +{ |
| 30 | + throw hresult_not_implemented(); |
| 31 | +} |
| 32 | +uint16_t ContainerPortMapping::ContainerPort() |
| 33 | +{ |
| 34 | + throw hresult_not_implemented(); |
| 35 | +} |
| 36 | +void ContainerPortMapping::ContainerPort(uint16_t value) |
| 37 | +{ |
| 38 | + throw hresult_not_implemented(); |
| 39 | +} |
| 40 | +winrt::Microsoft::WSL::Containers::PortProtocol ContainerPortMapping::Protocol() |
| 41 | +{ |
| 42 | + throw hresult_not_implemented(); |
| 43 | +} |
| 44 | +void ContainerPortMapping::Protocol(winrt::Microsoft::WSL::Containers::PortProtocol const& value) |
| 45 | +{ |
| 46 | + throw hresult_not_implemented(); |
| 47 | +} |
| 48 | +winrt::Windows::Networking::HostName ContainerPortMapping::WindowsAddress() |
| 49 | +{ |
| 50 | + throw hresult_not_implemented(); |
| 51 | +} |
| 52 | +void ContainerPortMapping::WindowsAddress(winrt::Windows::Networking::HostName const& value) |
| 53 | +{ |
| 54 | + throw hresult_not_implemented(); |
| 55 | +} |
| 56 | +} // namespace winrt::Microsoft::WSL::Containers::implementation |
0 commit comments