~noskcaj/ubuntu/saucy/sflphone/merge-1.2.3-2

« back to all changes in this revision

Viewing changes to daemon/src/call.h

  • Committer: Package Import Robot
  • Author(s): Mark Purcell
  • Date: 2012-05-19 21:46:37 UTC
  • mfrom: (1.1.7)
  • Revision ID: package-import@ubuntu.com-20120519214637-la8rbrford5kj6m3
Tags: 1.1.0-1
* New upstream release 
  - Fixes "FTBFS with libccrtp-dev/2.0.2 from experimental" (Closes: #663282)
* NEW Maintainer: Debian VoIP Team - Thanks Francois for your work.
  - (Closes: #665789: O: sflphone -- SIP and IAX2 compatible VoIP phone)
* Added Build-Depends: libdbus-c++-bin
* Add gcc47-fixes.patch

Show diffs side-by-side

added added

removed removed

Lines of Context:
32
32
#ifndef CALL_H
33
33
#define CALL_H
34
34
 
35
 
#include <cc++/thread.h> // for mutex
36
35
#include <sstream>
37
 
 
 
36
#include <map>
 
37
#include "cc_thread.h"
38
38
#include "audio/recordable.h"
39
39
 
40
40
/*
174
174
            isIPToIP_ = IPToIP;
175
175
        }
176
176
 
 
177
        virtual void answer() = 0;
 
178
 
177
179
        /**
178
180
         * Set my IP [not protected]
179
181
         * @param ip  The local IP address
202
204
         */
203
205
        unsigned int getLocalAudioPort();
204
206
 
205
 
        std::string getRecFileId() const {
206
 
            return getDisplayName();
207
 
        }
208
 
 
209
207
        void time_stop();
210
208
        std::map<std::string, std::string> createHistoryEntry() const;
211
209
        virtual bool setRecording();