PRCYCoin  2.0.0.7rc1
P2P Digital Currency
feedback.hpp
Go to the documentation of this file.
1 #ifndef __ZXCVBN__FEEDBACK_HPP
2 #define __ZXCVBN__FEEDBACK_HPP
3 
4 #include <zxcvbn/common.hpp>
5 
6 #include <string>
7 #include <vector>
8 
9 namespace zxcvbn {
10 
11 struct Feedback {
12  std::string warning;
13  std::vector<std::string> suggestions;
14 };
15 
16 Feedback get_feedback(score_t score, const std::vector<Match> & sequence);
17 
18 }
19 
20 #endif
zxcvbn::score_t
unsigned score_t
Definition: common.hpp:17
zxcvbn::Feedback::suggestions
std::vector< std::string > suggestions
Definition: feedback.hpp:13
common.hpp
zxcvbn::Feedback
Definition: feedback.hpp:11
zxcvbn
Definition: _frequency_lists.cpp:7
zxcvbn::Feedback::warning
std::string warning
Definition: feedback.hpp:12
zxcvbn::get_feedback
Feedback get_feedback(score_t score, const std::vector< Match > &sequence)
Definition: feedback.cpp:26