1.1 --- /dev/null Thu Jan 01 00:00:00 1970 +0000 1.2 +++ b/media/webrtc/signaling/include/CC_Line.h Wed Dec 31 06:09:35 2014 +0100 1.3 @@ -0,0 +1,32 @@ 1.4 +/* This Source Code Form is subject to the terms of the Mozilla Public 1.5 + * License, v. 2.0. If a copy of the MPL was not distributed with this 1.6 + * file, You can obtain one at http://mozilla.org/MPL/2.0/. */ 1.7 + 1.8 +#pragma once 1.9 + 1.10 +#include "CC_Common.h" 1.11 + 1.12 +extern "C" 1.13 +{ 1.14 +#include "ccapi_types.h" 1.15 +} 1.16 + 1.17 +namespace CSF 1.18 +{ 1.19 + class ECC_API CC_Line 1.20 + { 1.21 + public: 1.22 + NS_INLINE_DECL_THREADSAFE_REFCOUNTING(CC_Line) 1.23 + protected: 1.24 + CC_Line () { } 1.25 + 1.26 + public: 1.27 + virtual ~CC_Line () {}; 1.28 + 1.29 + virtual std::string toString() = 0; 1.30 + 1.31 + virtual cc_lineid_t getID() = 0; 1.32 + virtual CC_LineInfoPtr getLineInfo () = 0; 1.33 + virtual CC_CallPtr createCall () = 0; 1.34 + }; 1.35 +};