There are Two modifications.
[platform/upstream/iotivity.git] / service / notification-manager / NotificationManager / src / linux / main.cpp
1 //******************************************************************
2 //
3 // Copyright 2014 Samsung Electronics 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 #include <iostream>
22 #include "NotificationManager.h"
23
24 using namespace OC;
25
26 int main(void)
27 {
28
29     std::cout << endl;
30     std::cout << "========================================================" << endl;
31     std::cout << "Start Notification Manager : Hosting v0.5\n";
32
33
34         HostingConfig cfg;
35         cfg.hostingMode         = HostingMode::ManualMode;
36         cfg.automaticMethod     = AutomaticMethod::None;
37         cfg.notifyMethod                = NotifyMethod::Frequence;
38         cfg.frequency                   = NotifyFrequency::OnTime;
39
40         NotificationManager::initialize(cfg);
41
42     while(true)
43     {
44         char signal;
45         cin >> signal;
46
47         switch(signal)
48         {
49         case 'q':
50         case 'Q':
51                 std::cout << endl;
52                         std::cout << "========================================================" << endl;
53                         std::cout << "End Notification Manager : Hosting v0.5\n";
54                 return true;
55         default:
56                 break;
57         }
58
59     }
60
61     std::cout << endl;
62     std::cout << "========================================================" << endl;
63     std::cout << "End Notification Manager : Hosting v0.5\n";
64
65     return true;
66 }