tizen beta release
[framework/web/wrt-installer.git] / src / wrt-installer / language_subtag_rst_tree.h
1 /*
2  * Copyright (c) 2011 Samsung Electronics Co., Ltd All Rights Reserved
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  * @file    language_subtag_rst_tree.h
18  * @author  Lukasz Wrzosek (l.wrzosek@samsung.com)
19  * @version 1.0
20  */
21 #ifndef LANGUAGE_SUBTAG_RST_TREE_H
22 #define LANGUAGE_SUBTAG_RST_TREE_H
23
24 #include <dpl/singleton.h>
25 #include <dpl/noncopyable.h>
26 #include <string>
27 class LanguageSubtagRstTree : DPL::Noncopyable
28 {
29   public:
30     void Initialize();
31     bool ValidateLanguageTag(const std::string &tag);
32 };
33
34 typedef DPL::Singleton<LanguageSubtagRstTree> LanguageSubtagRstTreeSingleton;
35
36 enum iana_record_types_e
37 {
38     RECORD_TYPE_LANGUAGE,
39     RECORD_TYPE_SCRIPT,
40     RECORD_TYPE_REGION,
41     RECORD_TYPE_VARIANT,
42     RECORD_TYPE_GRANDFATHERED,
43     RECORD_TYPE_REDUNDANT,
44     RECORD_TYPE_EXTLANG
45 };
46
47 #endif  //LANGUAGE_SUBTAG_RST_TREE_H