Init basesystem source codes.
[staging/basesystem.git] / video_in_hal / nsframework / notification_persistent_service / server / include / ns_npp_state_persistence_user_notification.h
1 /*
2  * @copyright Copyright (c) 2016-2020 TOYOTA MOTOR CORPORATION.
3  *
4  * Licensed under the Apache License, Version 2.0 (the "License");
5  * you may not use this file except in compliance with the License.
6  * You may obtain a copy of the License at
7  *
8  *      http://www.apache.org/licenses/LICENSE-2.0
9  *
10  * Unless required by applicable law or agreed to in writing, software
11  * distributed under the License is distributed on an "AS IS" BASIS,
12  * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
13  * See the License for the specific language governing permissions and
14  * limitations under the License.
15  */
16
17 ////////////////////////////////////////////////////////////////////////////////////////////////////
18 /// \defgroup <<Group Tag>> <<Group Name>>
19 /// \ingroup  tag_NS_NPPService
20 /// .
21 ////////////////////////////////////////////////////////////////////////////////////////////////////
22
23 ////////////////////////////////////////////////////////////////////////////////////////////////////
24 /// \ingroup  tag_NS_NPPService
25 /// \brief    This file contains declaration of class CStatePersistenceUserNotification.
26 ///
27 ////////////////////////////////////////////////////////////////////////////////////////////////////
28
29 #ifndef NOTIFICATION_PERSISTENT_SERVICE_SERVER_INCLUDE_NS_NPP_STATE_PERSISTENCE_USER_NOTIFICATION_H_
30 #define NOTIFICATION_PERSISTENT_SERVICE_SERVER_INCLUDE_NS_NPP_STATE_PERSISTENCE_USER_NOTIFICATION_H_
31
32 ////////////////////////////////////////////////////////////////////////////////////////////////////
33 // Include Files
34 ////////////////////////////////////////////////////////////////////////////////////////////////////
35 #include <string>
36 #include "ns_npp_state_notification.h"
37
38
39 /**
40  *  This class inherits CStateNotification class and implements specific operations related to
41  *  persistent notifications specific to user.
42  */
43 class CStatePersistenceUserNotification : public CStateNotification {
44  public:
45   ////////////////////////////////////////////////////////////////////////////////////////////////
46   /// CStatePersistenceUserNotification
47   /// Constructor of CStatePersistenceUserNotification class
48   ///
49   /// \param  [IN] f_cnotificationname
50   ///     std::string - Notification name
51   ///
52   /// \param  [IN] f_uimaxmsgsize
53   ///     UI_32 - Maximum size of notification data
54   ///
55   /// \return
56   ///
57   ////////////////////////////////////////////////////////////////////////////////////////////////
58   CStatePersistenceUserNotification(const std::string &f_cnotificationname,
59                                     const UI_32 f_uimaxmsgsize);
60
61   ////////////////////////////////////////////////////////////////////////////////////////////////
62   /// ~CStatePersistenceUserNotification
63   /// Destructor of CStatePersistenceUserNotification class
64   ///
65   /// \param
66   ///
67   /// \return
68   ///
69   ////////////////////////////////////////////////////////////////////////////////////////////////
70   ~CStatePersistenceUserNotification();
71 };
72
73 #endif  // NOTIFICATION_PERSISTENT_SERVICE_SERVER_INCLUDE_NS_NPP_STATE_PERSISTENCE_USER_NOTIFICATION_H_