blob: 4c26fbd2ad2be8cbcc1373295f6db82839bb7cca [file] [log] [blame]
/* Interface that implements an exception throwing write method. */
#pragma once
#include "interfaces.hpp"
class WriteOnly: public ReadInterface
{
public:
WriteOnly()
: ReadInterface()
{ }
ReadReturn read(void) override;
};