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