Blame view

src/connection.cpp 390 Bytes
30448f62   Peter M. Groen   Replace Qt with s...
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
  #include "connection.h"
  
  using namespace osdev::components;
  
  Connection::Connection()
      : m_source()
      , m_target()
      , m_input()
      , m_output()
  {
  }
  
  Connection::Connection(const std::string& _source, const std::string& _target, const std::string& _output, const std::string& _input)
      : m_source(_source)
      , m_target(_target)
      , m_input(_input)
      , m_output(_output)
  {
  }