Initial merge-commit of the OIC code. Should successfully do discovery for single...
[platform/upstream/iotivity.git] / README
1
2
3 Builds with g++ 4.6, 4.8, 4.9.
4
5 Run "make" to build OCLib.a and the examples. 
6
7 OCProject/
8 ├── csdk
9 │   ├── examples  :: TODO :: Unused remove??
10 │   │   ├── occlient.c
11 │   │   └── ocserver.c
12 │   ├── ocstack.h
13 │   └── ocstack_stub.c
14 ├── examples
15 │   ├── client 
16 │   │   ├── MyMultiResourceHandler.cpp
17 │   │   ├── MyMultiResourceHandler.h
18 │   │   ├── MyObserverHandler.cpp
19 │   │   ├── MyObserverHandler.h
20 │   │   ├── MyResourceHandler.cpp
21 │   │   ├── MyResourceHandler.h
22 │   │   └── OCClient.cpp
23 │   ├── Makefile
24 │   ├── OCWrapper :: TODO :: Unused remove??
25 │   │   ├── Makefile
26 │   │   ├── parsetest.cpp
27 │   │   ├── testClient.cpp
28 │   │   ├── testServerApp.cpp
29 │   │   └── testServer.cpp
30 │   ├── server
31 │   │   ├── multiple_resources.cpp
32 │   │   └── single_resource.cpp
33 │   ├── test_OCClient.cpp
34 │   ├── test_OCReflect.cpp
35 │   └── test_properties.cpp
36 ├── include - TODO : Seperate what we expose and what we don't
37 │   ├── IClientWrapper.h
38 │   ├── InitializeException.h
39 │   ├── InProcClientWrapper.h
40 │   ├── InProcServerWrapper.h
41 │   ├── IServerWrapper.h
42 │   ├── OCApi.h
43 │   ├── OCException.h
44 │   ├── OCObject.h
45 │   ├── OCObserver.h
46 │   ├── OCObserverHandler.h
47 │   ├── OCPlatform.h
48 │   ├── OCPlatformHandler.h
49 │   ├── OCProperties.h
50 │   ├── OCReflect.h
51 │   ├── OCResource.h
52 │   ├── OCResourceHandler.h
53 │   ├── OCSecurityModel.h
54 │   ├── OCServer.h :: TODO :: Unused remove??
55 │   ├── OutOfProcClientWrapper.h
56 │   ├── OutOfProcServerWrapper.h
57 │   ├── ResourceInitException.h
58 │   └── WrapperFactory.h
59 ├── Makefile
60 ├── OCLib
61 │   ├── InProcClientWrapper.cpp
62 │   ├── InProcServerWrapper.cpp
63 │   ├── OCApi.cpp
64 │   ├── OCObject.cpp
65 │   ├── OCObserver.cpp
66 │   ├── OCPlatform.cpp
67 │   ├── OCProperties.cpp
68 │   ├── OCReflect.cpp
69 │   ├── OCResource.cpp
70 │   ├── OCSecurityModel.cpp
71 │   └── OCServer.cpp :: TODO :: Unused remove??
72 └── README - You are reading this.
73