diff options
Diffstat (limited to 'inc/model/IHeldCall.h')
-rw-r--r-- | inc/model/IHeldCall.h | 35 |
1 files changed, 0 insertions, 35 deletions
diff --git a/inc/model/IHeldCall.h b/inc/model/IHeldCall.h deleted file mode 100644 index 030ae5d..0000000 --- a/inc/model/IHeldCall.h +++ /dev/null @@ -1,35 +0,0 @@ -/* - * Copyright 2017 Samsung Electronics Co., Ltd - * - * Licensed under the Flora License, Version 1.1 (the "License"); - * you may not use this file except in compliance with the License. - * You may obtain a copy of the License at - * - * http://floralicense.org/license/ - * - * Unless required by applicable law or agreed to in writing, software - * distributed under the License is distributed on an "AS IS" BASIS, - * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. - * See the License for the specific language governing permissions and - * limitations under the License. - */ - -#ifndef __CALLUI_MODEL_I_HELD_CALL_H__ -#define __CALLUI_MODEL_I_HELD_CALL_H__ - -#include "types.h" - -namespace callui { - - class IHeldCall : public ucl::Polymorphic { - public: - virtual ICallInfoSCRef getInfo() const = 0; - virtual ucl::Result unhold() = 0; - virtual ucl::Result joinWithActive() = 0; - virtual ucl::Result swapWithActive() = 0; - virtual ucl::Result end() = 0; - virtual ucl::Result split(const IConferenceCallInfoSCRef &confCallInfo) = 0; - }; -} - -#endif // __CALLUI_MODEL_I_HELD_CALL_H__ |