~ubuntu-branches/ubuntu/saucy/resiprocate/saucy-proposed

« back to all changes in this revision

Viewing changes to b2bua/MyDialogSetHandler.hxx

  • Committer: Package Import Robot
  • Author(s): Daniel Pocock
  • Date: 2012-05-17 19:29:59 UTC
  • Revision ID: package-import@ubuntu.com-20120517192959-vv00m77isztdy64q
Tags: upstream-1.8.2
ImportĀ upstreamĀ versionĀ 1.8.2

Show diffs side-by-side

added added

removed removed

Lines of Context:
 
1
 
 
2
#ifndef __MyDialogSetHandler_h
 
3
#define __MyDialogSetHandler_h
 
4
 
 
5
#include "resip/dum/DialogSetHandler.hxx"
 
6
 
 
7
namespace b2bua
 
8
{
 
9
 
 
10
class MyDialogSetHandler : public resip::DialogSetHandler {
 
11
 
 
12
public:
 
13
  ~MyDialogSetHandler();
 
14
 
 
15
  virtual void onTrying(resip::AppDialogSetHandle ah, const resip::SipMessage& msg);
 
16
 
 
17
  virtual void onNonDialogCreatingProvisional(resip::AppDialogSetHandle ah, const resip::SipMessage& msg);
 
18
 
 
19
};
 
20
 
 
21
}
 
22
 
 
23
#endif
 
24
 
 
25
/* ====================================================================
 
26
 *
 
27
 * Copyright 2012 Daniel Pocock.  All rights reserved.
 
28
 *
 
29
 * Redistribution and use in source and binary forms, with or without
 
30
 * modification, are permitted provided that the following conditions
 
31
 * are met:
 
32
 *
 
33
 * 1. Redistributions of source code must retain the above copyright
 
34
 *    notice, this list of conditions and the following disclaimer.
 
35
 *
 
36
 * 2. Redistributions in binary form must reproduce the above copyright
 
37
 *    notice, this list of conditions and the following disclaimer in
 
38
 *    the documentation and/or other materials provided with the
 
39
 *    distribution.
 
40
 *
 
41
 * 3. Neither the name of the author(s) nor the names of any contributors
 
42
 *    may be used to endorse or promote products derived from this software
 
43
 *    without specific prior written permission.
 
44
 *
 
45
 * THIS SOFTWARE IS PROVIDED BY THE AUTHOR(S) AND CONTRIBUTORS "AS IS" AND
 
46
 * ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
 
47
 * IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE
 
48
 * ARE DISCLAIMED.  IN NO EVENT SHALL THE AUTHOR(S) OR CONTRIBUTORS BE LIABLE
 
49
 * FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL
 
50
 * DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS
 
51
 * OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION)
 
52
 * HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT
 
53
 * LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY
 
54
 * OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF
 
55
 * SUCH DAMAGE.
 
56
 *
 
57
 * ====================================================================
 
58
 *
 
59
 *
 
60
 */
 
61