sipXcallLib home page


MyStreamQueueHistoryKeeper.h
Go to the documentation of this file.
1 //
2 // Copyright (C) 2004-2006 SIPfoundry Inc.
3 // Licensed by SIPfoundry under the LGPL license.
4 //
5 // Copyright (C) 2004-2006 Pingtel Corp. All rights reserved.
6 // Licensed to SIPfoundry under a Contributor Agreement.
7 //
8 // $$
10 
11 #ifndef _MyStreamQueueHistoryKeeper_h_
12 #define _MyStreamQueueHistoryKeeper_h_
13 
14 #include "utl/UtlString.h"
15 #include "mp/MpQueuePlayerListener.h"
16 
17 class MyStreamQueueHistoryKeeper : public MpQueuePlayerListener
18 {
19  protected:
20  UtlString mHistory ;
21  UtlString mExpectedHistory;
22 
23  public:
24  virtual ~MyStreamQueueHistoryKeeper(void);
25 
26  virtual void queuePlayerStarted();
27  virtual void queuePlayerStopped();
28  virtual void queuePlayerAdvanced();
29  const char* getHistory();
30 };
31 
32 #endif // MyStreamQueueHistoryKeeper_h_
virtual void queuePlayerAdvanced()
virtual ~MyStreamQueueHistoryKeeper(void)
Definition: MyStreamQueueHistoryKeeper.h:17
virtual void queuePlayerStarted()
UtlString mExpectedHistory
Definition: MyStreamQueueHistoryKeeper.h:21
UtlString mHistory
Definition: MyStreamQueueHistoryKeeper.h:20
virtual void queuePlayerStopped()