mystreamqueuehistorykeeper.cpp
来自「基于sipfoundy 公司开发的sipx协议API」· C++ 代码 · 共 35 行
CPP
35 行
//// Copyright (C) 2004, 2005 Pingtel Corp.// //// $$////////////////////////////////////////////////////////////////////////#include "test/mp/MyStreamQueueHistoryKeeper.h"MyStreamQueueHistoryKeeper::~MyStreamQueueHistoryKeeper(){}void MyStreamQueueHistoryKeeper::queuePlayerStarted(){ mHistory.append("queuePlayerStarted ") ;}void MyStreamQueueHistoryKeeper::queuePlayerStopped(){ mHistory.append("queuePlayerStopped ") ;}void MyStreamQueueHistoryKeeper::queuePlayerAdvanced(){ mHistory.append("queuePlayerAdvanced ") ;}const char* MyStreamQueueHistoryKeeper::getHistory(){ return mHistory.data() ;}
⌨️ 快捷键说明
复制代码Ctrl + C
搜索代码Ctrl + F
全屏模式F11
增大字号Ctrl + =
减小字号Ctrl + -
显示快捷键?