Merge "Fix build warning based on GCC-9" into tizen
[platform/core/api/notification.git] / notification-ex / multi_language_implementation.h
1
2
3 /*
4  * Copyright (c) 2019 Samsung Electronics Co., Ltd.
5  *
6  * Licensed under the Apache License, Version 2.0 (the "License");
7  * you may not use this file except in compliance with the License.
8  * You may obtain a copy of the License at
9  *
10  * http://www.apache.org/licenses/LICENSE-2.0
11  *
12  * Unless required by applicable law or agreed to in writing, software
13  * distributed under the License is distributed on an "AS IS" BASIS,
14  * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
15  * See the License for the specific language governing permissions and
16  * limitations under the License.
17  */
18
19 #ifndef NOTIFICATION_EX_MULTI_LANGUAGE_IMPLEMENTATION_H_
20 #define NOTIFICATION_EX_MULTI_LANGUAGE_IMPLEMENTATION_H_
21
22 #include <string>
23 #include <memory>
24 #include <vector>
25
26 #include "notification-ex/multi_language.h"
27
28 namespace notification {
29 namespace item {
30
31 class MultiLanguage::Impl {
32  public:
33   virtual ~Impl();
34
35  private:
36   Impl(std::string msgid, std::string format, std::vector<std::string> args,
37     MultiLanguage* parent);
38   Impl(std::string msgid, std::string format, MultiLanguage* parent);
39
40  private:
41   friend class MultiLanguage;
42
43   std::string msgid_;
44   std::string format_;
45   std::vector<std::string> args_;
46   std::string translated_;
47   MultiLanguage* parent_;
48 };
49
50 }  // namespace item
51 }  // namespace notification
52
53 #endif  // NOTIFICATION_EX_MULTI_LANGUAGE_IMPLEMENTATION_H_