Requires SSL client wrapper
| 733 | |
| 734 | //Requires SSL client wrapper |
| 735 | QueueQuote::QueueQuote(HWND hNotify, const char * quote, int notifyCode, void * notifyData) : |
| 736 | QueueOperation(QueueTypeQuote, hNotify, notifyCode, notifyData) |
| 737 | { |
| 738 | m_quote = SU::strdup(quote); |
| 739 | } |
| 740 | |
| 741 | QueueQuote::~QueueQuote() { |
| 742 | SU::free(m_quote); |
nothing calls this directly
no outgoing calls
no test coverage detected