Initial merge-commit of the OIC code. Should successfully do discovery for single...
[platform/upstream/iotivity.git] / csdk / controller / src / remoting / LiteConnection.cpp
1 //******************************************************************
2 //
3 // Copyright 2014 Intel Corporation All Rights Reserved.
4 //-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=
5
6 // ============================================================================
7 // Includes
8 // ============================================================================
9 #include "LiteConnection.h"
10
11 // ============================================================================
12 // Namespace
13 // ============================================================================
14 namespace remoting {
15
16   // ============================================================================
17   // Constructor/Destructor
18   // ============================================================================
19     //---------------------------------------------------------------------------
20     // Constructor
21     //---------------------------------------------------------------------------
22   LiteConnection::LiteConnection(int socket) : socket_(socket)
23   {
24
25   }
26
27   //---------------------------------------------------------------------------
28   // Destructor
29   //---------------------------------------------------------------------------
30   LiteConnection::~LiteConnection()
31   {
32   }
33
34 }