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

« back to all changes in this revision

Viewing changes to resip/dum/AppDialog.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
#if !defined(RESIP_APPDIALOG_HXX)
 
2
#define RESIP_APPDIALOG_HXX
 
3
 
 
4
#include "resip/dum/Handles.hxx"
 
5
#include "resip/dum/Handled.hxx"
 
6
#include "resip/dum/DialogId.hxx"
 
7
 
 
8
 
 
9
#include <vector>
 
10
 
 
11
namespace resip
 
12
{
 
13
 
 
14
class HandleManager;
 
15
class Dialog;
 
16
class Data;
 
17
class NameAddr;
 
18
 
 
19
class AppDialog : public Handled
 
20
{
 
21
   public:
 
22
      AppDialog(HandleManager& ham);
 
23
      virtual ~AppDialog();
 
24
 
 
25
      AppDialogHandle getHandle();
 
26
      DialogId getDialogId() const;
 
27
 
 
28
      //?dcm? -- further evidence that this should possbily be a dialog
 
29
      //subclass(cancel gets tricky). List vs vector?(here and in Dialog)
 
30
      std::vector<ClientSubscriptionHandle> getClientSubscriptions();
 
31
      std::vector<ClientSubscriptionHandle> findClientSubscriptions(const Data& event);
 
32
 
 
33
      std::vector<ServerSubscriptionHandle> getServerSubscriptions();
 
34
      std::vector<ServerSubscriptionHandle> findServerSubscriptions(const Data& event);
 
35
 
 
36
      //returns an invalid handle if there is no session
 
37
      InviteSessionHandle getInviteSession();
 
38
 
 
39
      // !dlb! less hacked approach to SUBSCRIBE contact issue
 
40
      // modify contact only onNew
 
41
      NameAddr& getContact();
 
42
      
 
43
      virtual EncodeStream& dump(EncodeStream& strm) const;
 
44
 
 
45
   private:
 
46
      friend class DialogSet;      
 
47
      Dialog* mDialog;      
 
48
};
 
49
 
 
50
}
 
51
 
 
52
#endif
 
53
 
 
54
/* ====================================================================
 
55
 * The Vovida Software License, Version 1.0 
 
56
 * 
 
57
 * Copyright (c) 2000 Vovida Networks, Inc.  All rights reserved.
 
58
 * 
 
59
 * Redistribution and use in source and binary forms, with or without
 
60
 * modification, are permitted provided that the following conditions
 
61
 * are met:
 
62
 * 
 
63
 * 1. Redistributions of source code must retain the above copyright
 
64
 *    notice, this list of conditions and the following disclaimer.
 
65
 * 
 
66
 * 2. Redistributions in binary form must reproduce the above copyright
 
67
 *    notice, this list of conditions and the following disclaimer in
 
68
 *    the documentation and/or other materials provided with the
 
69
 *    distribution.
 
70
 * 
 
71
 * 3. The names "VOCAL", "Vovida Open Communication Application Library",
 
72
 *    and "Vovida Open Communication Application Library (VOCAL)" must
 
73
 *    not be used to endorse or promote products derived from this
 
74
 *    software without prior written permission. For written
 
75
 *    permission, please contact vocal@vovida.org.
 
76
 *
 
77
 * 4. Products derived from this software may not be called "VOCAL", nor
 
78
 *    may "VOCAL" appear in their name, without prior written
 
79
 *    permission of Vovida Networks, Inc.
 
80
 * 
 
81
 * THIS SOFTWARE IS PROVIDED "AS IS" AND ANY EXPRESSED OR IMPLIED
 
82
 * WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES
 
83
 * OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE, TITLE AND
 
84
 * NON-INFRINGEMENT ARE DISCLAIMED.  IN NO EVENT SHALL VOVIDA
 
85
 * NETWORKS, INC. OR ITS CONTRIBUTORS BE LIABLE FOR ANY DIRECT DAMAGES
 
86
 * IN EXCESS OF $1,000, NOR FOR ANY INDIRECT, INCIDENTAL, SPECIAL,
 
87
 * EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO,
 
88
 * PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR
 
89
 * PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY
 
90
 * OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT
 
91
 * (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE
 
92
 * USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH
 
93
 * DAMAGE.
 
94
 * 
 
95
 * ====================================================================
 
96
 * 
 
97
 * This software consists of voluntary contributions made by Vovida
 
98
 * Networks, Inc. and many individuals on behalf of Vovida Networks,
 
99
 * Inc.  For more information on Vovida Networks, Inc., please see
 
100
 * <http://www.vovida.org/>.
 
101
 *
 
102
 */