Skip to content
Snippets Groups Projects
Commit c163a9f0 authored by Alexandre Savard's avatar Alexandre Savard
Browse files
parents 25bec606 b01a9f9d
Branches
Tags
No related merge requests found
......@@ -28,13 +28,15 @@ namespace utilspp
{
class NonCopyable
{
public:
protected:
NonCopyable()
{}
~NonCopyable()
{}
private:
NonCopyable(const NonCopyable&)
{}
NonCopyable(const NonCopyable&);
const NonCopyable& operator=(const NonCopyable&);
};
}
......
......@@ -33,6 +33,7 @@
#include "sipcall.h"
#include "global.h" // for _debug
#include "audio/audiortp/AudioRtpFactory.h"
#include "sdp.h"
const int SIPCall::CALL_MEMPOOL_INIT_SIZE = 16384;
......
......@@ -37,11 +37,7 @@
#include <pjsip-simple/evsub.h>
#include <pjsip_ua.h>
#include "audio/audiortp/AudioRtpFactory.h"
class AudioCodec;
class Sdp;
class AudioRtp;
namespace sfl
{
......
......@@ -49,6 +49,7 @@
#include "im/InstantMessaging.h"
#include "audio/audiolayer.h"
#include "audio/audiortp/AudioRtpFactory.h"
#include "pjsip/sip_endpoint.h"
#include "pjsip/sip_transport_tls.h"
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Please register or to comment