Skip to content
Snippets Groups Projects
Commit dd384553 authored by Carsten Patzke's avatar Carsten Patzke
Browse files

Added __get_io()

parent 2855ad51
No related branches found
No related tags found
No related merge requests found
......@@ -13,6 +13,7 @@ class HasIO {
HasIO();
public:
void __set_io(IO* io);
IO* __get_io();
};
}
......
......@@ -11,3 +11,6 @@ void hidra2::HasIO::__set_io(hidra2::IO* io) {
this->io = io;
}
hidra2::IO* hidra2::HasIO::__get_io() {
return io;
}
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment