summaryrefslogtreecommitdiffstats
path: root/lib/CommLayer/CommLayerServerSocket.cpp
blob: c172c86cecae2b1ff8af1ea0644535a53bbd2dac (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
#include "CommLayerServerSocket.h"
#include <iostream>


CCommLayerServerSocket::CCommLayerServerSocket(CMiddleWare *pMW)
: CCommLayerServer(pMW)
{
    std::cout << "CCommLayerServerSocket init" << std::endl;
}

CCommLayerServerSocket::~CCommLayerServerSocket()
{
    std::cout << "Cleaning up Socket" << std::endl;
}