|
reSIProcate/DialogUsageManager
9694
|
#include <HttpProvider.hxx>


Public Member Functions | |
| virtual void | get (const GenericUri &target, const Data &tid, TransactionUser &tu, TargetCommand::Target &commandTarget)=0 |
| virtual | ~HttpProvider () |
Static Public Member Functions | |
| static void | setFactory (std::auto_ptr< HttpProviderFactory > fact) |
| static HttpProvider * | instance () |
Static Private Attributes | |
| static HttpProvider * | mInstance = 0 |
| static std::auto_ptr < HttpProviderFactory > | mFactory |
| static Mutex | mMutex |
Definition at line 20 of file HttpProvider.hxx.
| virtual resip::HttpProvider::~HttpProvider | ( | ) | [inline, virtual] |
Definition at line 30 of file HttpProvider.hxx.
{} //impl. singleton destructor pattern later
| virtual void resip::HttpProvider::get | ( | const GenericUri & | target, |
| const Data & | tid, | ||
| TransactionUser & | tu, | ||
| TargetCommand::Target & | commandTarget | ||
| ) | [pure virtual] |
Referenced by main(), and resip::IdentityHandler::queueForIdentityCheck().
| HttpProvider * HttpProvider::instance | ( | ) | [static] |
Definition at line 17 of file HttpProvider.cxx.
References mFactory, mInstance, and mMutex.
Referenced by main(), and resip::IdentityHandler::queueForIdentityCheck().
| void HttpProvider::setFactory | ( | std::auto_ptr< HttpProviderFactory > | fact | ) | [static] |
Definition at line 11 of file HttpProvider.cxx.
References mFactory.
Referenced by main().
{
mFactory = fact;
}
std::auto_ptr< HttpProviderFactory > HttpProvider::mFactory [static, private] |
Definition at line 33 of file HttpProvider.hxx.
Referenced by instance(), and setFactory().
HttpProvider * HttpProvider::mInstance = 0 [static, private] |
Definition at line 32 of file HttpProvider.hxx.
Referenced by instance().
Mutex HttpProvider::mMutex [static, private] |
Definition at line 34 of file HttpProvider.hxx.
Referenced by instance().
1.7.5.1