diff --git a/src/comm/OpalLink.cc b/src/comm/OpalLink.cc new file mode 100644 index 0000000..cec637f --- /dev/null +++ b/src/comm/OpalLink.cc @@ -0,0 +1,5 @@ +#include "OpalLink.h" + +OpalLink::OpalLink() +{ +} diff --git a/src/comm/OpalLink.h b/src/comm/OpalLink.h new file mode 100644 index 0000000..f0c81c0 --- /dev/null +++ b/src/comm/OpalLink.h @@ -0,0 +1,10 @@ +#ifndef OPALLINK_H +#define OPALLINK_H + +class OpalLink : public LinkInterface +{ +public: + OpalLink(); +}; + +#endif // OPALLINK_H