75 std::string::size_type beg = m_user_type.find( sep );
77 if ( beg != std::string::npos )
79 std::string::size_type end1 = m_user_type.find( sep, beg + 1 );
80 if ( end1 != std::string::npos )
82 std::string::size_type end2 = m_user_type.find( sep, end1 + 1 );
83 if ( end2 != std::string::npos )
86 std::string first = m_user_type.substr( beg + 1, end1 - beg - 1 );
87 std::string second = m_user_type.substr( end1 + 1, end2 - end1 - 1 );
96 std::string first = m_user_type.substr( beg + 1, end1 - beg - 1 );
97 std::string second = m_user_type.substr( end1 + 1, m_user_type.size() - 1 );