openMSX
RS232Connector.cc
Go to the documentation of this file.
1#include "RS232Connector.hh"
2#include "RS232Device.hh"
3#include "DummyRS232Device.hh"
4#include "checked_cast.hh"
5#include "serialize.hh"
6#include <memory>
7
8namespace openmsx {
9
11 std::string name_)
12 : Connector(pluggingController_, std::move(name_),
13 std::make_unique<DummyRS232Device>())
14{
15}
16
17std::string_view RS232Connector::getDescription() const
18{
19 return "Serial RS232 connector";
20}
21
22std::string_view RS232Connector::getClass() const
23{
24 return "RS232";
25}
26
28{
29 return *checked_cast<RS232Device*>(&getPlugged());
30}
31
32template<typename Archive>
33void RS232Connector::serialize(Archive& ar, unsigned /*version*/)
34{
35 ar.template serializeBase<Connector>(*this);
36}
38
39} // namespace openmsx
Represents something you can plug devices into.
Definition Connector.hh:21
Pluggable & getPlugged() const
Returns the Pluggable currently plugged in.
Definition Connector.hh:59
Central administration of Connectors and Pluggables.
std::string_view getClass() const final
A Connector belong to a certain class.
RS232Connector(PluggingController &pluggingController, std::string name)
RS232Device & getPluggedRS232Dev() const
std::string_view getDescription() const final
Get a description for this connector.
void serialize(Archive &ar, unsigned version)
This file implemented 3 utility functions:
Definition Autofire.cc:9
STL namespace.
#define INSTANTIATE_SERIALIZE_METHODS(CLASS)