blob: 17113ae510e7a1c41227730103aa70c1c1cb5a63 [file] [log] [blame]
Alexander Hansen46a755f2025-10-27 16:31:08 +01001// SPDX-License-Identifier: Apache-2.0
2// SPDX-FileCopyrightText: Copyright 2017 Google Inc
Patrick Venture863b9242018-03-08 08:29:23 -08003
Patrick Venture863b9242018-03-08 08:29:23 -08004#include "writeonly.hpp"
5
Ed Tanousf8b6e552025-06-27 13:27:50 -07006#include "interfaces.hpp"
7
Patrick Ventureda4a5dd2018-08-31 09:42:48 -07008#include <stdexcept>
Patrick Venture863b9242018-03-08 08:29:23 -08009
Patrick Venturea0764872020-08-08 07:48:43 -070010namespace pid_control
11{
12
Patrick Venture863b9242018-03-08 08:29:23 -080013ReadReturn WriteOnly::read(void)
14{
15 throw std::runtime_error("Not supported.");
16}
Patrick Venturea0764872020-08-08 07:48:43 -070017
18} // namespace pid_control