Initial merge-commit of the OIC code. Should successfully do discovery for single...
[platform/upstream/iotivity.git] / csdk / controller / src / remoting / LiteConnection.h
1 //******************************************************************
2 //
3 // Copyright 2014 Intel Corporation All Rights Reserved.
4 //-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=
5
6 #ifndef LITECONNECTION_H_
7 #define LITECONNECTION_H_
8
9 // ============================================================================
10 // Includes
11 // ============================================================================
12
13
14 // ============================================================================
15 // Namespace
16 // ============================================================================
17 namespace remoting {
18
19   // ==========================================================================
20   // Class
21   // ==========================================================================
22
23   class LiteConnection {
24   public:
25     // TODO: socket parameter is faked with an int for now until I know how the connection info will be conveyed
26     LiteConnection(int socket);
27     virtual ~LiteConnection();
28
29   private:
30     int socket_;
31   };
32
33 }
34
35 #endif /* LITECONNECTION_H_ */