Ensure async thread join
[platform/core/security/key-manager.git] / misc / ckm_db_tool / ui.h
1 /*
2  *  Copyright (c) 2020 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       ui.h
18  * @author     Mateusz Cegielka (m.cegielka@samsung.com)
19  * @version    1.0
20  */
21
22 #pragma once
23
24 #include <iostream>
25 #include <string>
26
27 namespace CKM {
28
29 namespace UI {
30
31 std::ostream& info();
32 std::ostream& warning();
33 std::ostream& error();
34
35 std::string promptLine(const std::string &prompt);
36 std::string promptPassword(const std::string &prompt);
37
38 } // namespace UI
39
40 } // namespace CKM