Lines Matching refs:os
20 std::ostream &operator<<(std::ostream &os, const UiStrategyCfg &info)
22 os << "confirmPageId: " << info.confirmPageId << std::endl;
23 os << "labelLogId: { " << info.labelLogId << " }" << std::endl;
24 os << "labelLogResId: { " << info.labelLogResId << " }" << std::endl;
25 os << "labelUpdId: { " << info.labelUpdId << " }" << std::endl;
26 os << info.progressPage << std::endl;
27 os << info.resPage;
28 return os;
31 std::ostream &operator<<(std::ostream &os, const ResPage &info)
33 os << "resPage: {" << std::endl;
34 os << "\tsucessPageId: " << info.successPageId << std::endl;
35 os << "\tfailPageId: " << info.failPageId << std::endl;
36 os << "}" << std::endl;
37 return os;
40 std::ostream &operator<<(std::ostream &os, const ProgressPage &info)
42 os << "progressPage: {" << std::endl;
43 os << "\tprocessPageId: " << info.progressPageId << std::endl;
44 os << "\tprgrsComId: " << info.progressComId << std::endl;
45 os << "\tprgrsType: " << info.progressType << std::endl;
46 os << "\tlogoComId: " << info.logoComId << std::endl;
47 os << "\tlogoType: " << info.logoType << std::endl;
48 os << "}";
49 return os;