send request to addressbook link directly without proxy

This commit is contained in:
orignal 2014-12-19 14:40:02 -05:00
parent 91e833cdaf
commit 1179731959
2 changed files with 84 additions and 0 deletions

View file

@ -51,6 +51,23 @@ namespace client
AddressBookStorage * m_Storage;
bool m_IsLoaded, m_IsDowloading;
};
class AddressBookSubscription
{
public:
AddressBookSubscription (AddressBook& book, const std::string& link);
void CheckSubscription ();
private:
void Request ();
private:
AddressBook& m_Book;
std::string m_Link;
};
}
}