a
    {b                     @   s   d Z G dd dZdS )a  
Call
====

The :class:`Call` provides access to calling feature of your device.

.. note::
    - On Android your app needs the `CALL_PHONE` or `CALL_PRIVILEGED`
    permission in order to make calls.

    - Dialing call feature in not supported yet in iOS devices.

Simple Examples
---------------

To make call::

    >>> from plyer import call
    >>> tel = 9999222299
    >>> call.makecall(tel=tel)

To dial call::

    >>> call.dialcall()

Supported Platforms
-------------------
Android, iOS

c                   @   s0   e Zd ZdZdd Zdd Zdd Zdd	 Zd
S )Callz
    Call facade.
    c                 C   s   | j |d dS )zk
        Make calls using your device.

        :param tel: The reciever
        :type tel: number
        )telN)	_makecall)selfr    r   b/Users/vegardjervell/Documents/master/model/venv/lib/python3.9/site-packages/plyer/facades/call.pymakecall&   s    zCall.makecallc                 C   s   |    dS )z*
        Opens dialing interface.
        N)	_dialcall)r   r   r   r   dialcall/   s    zCall.dialcallc                 K   s
   t  d S NNotImplementedErrorr   kwargsr   r   r   r   7   s    zCall._makecallc                 K   s
   t  d S r
   r   r   r   r   r   r   :   s    zCall._dialcallN)__name__
__module____qualname____doc__r   r	   r   r   r   r   r   r   r   !   s
   	r   N)r   r   r   r   r   r   <module>   s    