Imported Upstream version 1.0.0
[platform/upstream/iotivity.git] / resource / csdk / logger / test / arduino / ArduinoLoggerTest.h
1 //******************************************************************
2 //
3 // Copyright 2014 Intel Mobile Communications GmbH All Rights Reserved.
4 //
5 //-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=
6 //
7 // Licensed under the Apache License, Version 2.0 (the "License");
8 // you may not use this file except in compliance with the License.
9 // You may obtain a copy of the License at
10 //
11 //      http://www.apache.org/licenses/LICENSE-2.0
12 //
13 // Unless required by applicable law or agreed to in writing, software
14 // distributed under the License is distributed on an "AS IS" BASIS,
15 // WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
16 // See the License for the specific language governing permissions and
17 // limitations under the License.
18 //
19 //-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=
20
21
22 // Only modify this file to include
23 // - function definitions (prototypes)
24 // - include files
25 // - extern variable definitions
26 // In the appropriate section
27
28 #ifndef ArduinoLoggerTest_H_
29 #define ArduinoLoggerTest_H_
30 #include "Arduino.h"
31 //add your includes for the project ArduinoDummyTestFramework here
32
33
34 //end of add your includes here
35 #ifdef __cplusplus
36 extern "C" {
37 #endif
38 void loop();
39 void setup();
40 #ifdef __cplusplus
41 } // extern "C"
42 #endif
43
44 //add your function definitions for the project ArduinoDummyTestFramework here
45
46
47
48
49 //Do not add code below this line
50 #endif /* LoggerTest_H_ */