forked from Mirrors/freeswitch
10 lines
154 B
C++
10 lines
154 B
C++
#include "channel.h"
|
|
|
|
Channel::Channel(QString uuid):
|
|
_uuid(uuid)
|
|
{
|
|
_progressEpoch = 0;
|
|
_progressMediaEpoch = 0;
|
|
_createdEpoch = 0;
|
|
}
|