#ifndef JINGLE_NOTIFIER_BASE_NOTIFIER_OPTIONS_UTIL_H_
#define JINGLE_NOTIFIER_BASE_NOTIFIER_OPTIONS_UTIL_H_
#include <string>
#include <vector>
#include "jingle/notifier/base/server_information.h"
#include "talk/xmpp/xmppclientsettings.h"
namespace notifier {
struct NotifierOptions;
buzz::XmppClientSettings MakeXmppClientSettings(
    const NotifierOptions& notifier_options,
    const std::string& email, const std::string& token);
ServerList GetServerList(const NotifierOptions& notifier_options);
}  
#endif