1 |
jason |
3616 |
#if !defined(RESIP_DESTORYUSAGE_HXX) |
2 |
|
|
#define RESIP_DESTORYUSAGE_HXX |
3 |
|
|
|
4 |
|
|
#include <iosfwd> |
5 |
jason |
5276 |
#include "resip/sip/ApplicationMessage.hxx" |
6 |
|
|
#include "resip/dum/Handles.hxx" |
7 |
jason |
3616 |
|
8 |
|
|
namespace resip |
9 |
|
|
{ |
10 |
|
|
|
11 |
jason |
3621 |
class Dialog; |
12 |
|
|
class DialogSet; |
13 |
|
|
|
14 |
jason |
3616 |
class DestroyUsage : public ApplicationMessage |
15 |
|
|
{ |
16 |
|
|
public: |
17 |
|
|
DestroyUsage(BaseUsageHandle target); |
18 |
jason |
3621 |
DestroyUsage(Dialog* dialog); |
19 |
|
|
DestroyUsage(DialogSet* dialogSet); |
20 |
|
|
|
21 |
dlb |
4790 |
virtual ~DestroyUsage(); |
22 |
jason |
3616 |
|
23 |
dlb |
4790 |
virtual Message* clone() const; |
24 |
jason |
3616 |
void destroy(); |
25 |
|
|
|
26 |
|
|
virtual std::ostream& encode(std::ostream& strm) const; |
27 |
dlb |
4790 |
virtual std::ostream& encodeBrief(std::ostream& strm) const; |
28 |
jason |
3616 |
|
29 |
|
|
private: |
30 |
jason |
3621 |
DestroyUsage(const DestroyUsage& other); |
31 |
|
|
|
32 |
jason |
3616 |
BaseUsageHandle mHandle; |
33 |
jason |
3621 |
DialogSet* mDialogSet; |
34 |
|
|
Dialog* mDialog; |
35 |
jason |
3616 |
}; |
36 |
|
|
|
37 |
|
|
} |
38 |
|
|
|
39 |
|
|
#endif |
40 |
sgodin |
3930 |
|
41 |
jason |
4010 |
/* ==================================================================== |
42 |
|
|
* The Vovida Software License, Version 1.0 |
43 |
|
|
* |
44 |
|
|
* Redistribution and use in source and binary forms, with or without |
45 |
|
|
* modification, are permitted provided that the following conditions |
46 |
|
|
* are met: |
47 |
|
|
* |
48 |
|
|
* 1. Redistributions of source code must retain the above copyright |
49 |
|
|
* notice, this list of conditions and the following disclaimer. |
50 |
|
|
* |
51 |
|
|
* 2. Redistributions in binary form must reproduce the above copyright |
52 |
|
|
* notice, this list of conditions and the following disclaimer in |
53 |
|
|
* the documentation and/or other materials provided with the |
54 |
|
|
* distribution. |
55 |
|
|
* |
56 |
|
|
* 3. The names "VOCAL", "Vovida Open Communication Application Library", |
57 |
|
|
* and "Vovida Open Communication Application Library (VOCAL)" must |
58 |
|
|
* not be used to endorse or promote products derived from this |
59 |
|
|
* software without prior written permission. For written |
60 |
|
|
* permission, please contact vocal@vovida.org. |
61 |
|
|
* |
62 |
|
|
* 4. Products derived from this software may not be called "VOCAL", nor |
63 |
|
|
* may "VOCAL" appear in their name, without prior written |
64 |
|
|
* permission of Vovida Networks, Inc. |
65 |
|
|
* |
66 |
|
|
* THIS SOFTWARE IS PROVIDED "AS IS" AND ANY EXPRESSED OR IMPLIED |
67 |
|
|
* WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES |
68 |
|
|
* OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE, TITLE AND |
69 |
|
|
* NON-INFRINGEMENT ARE DISCLAIMED. IN NO EVENT SHALL VOVIDA |
70 |
|
|
* NETWORKS, INC. OR ITS CONTRIBUTORS BE LIABLE FOR ANY DIRECT DAMAGES |
71 |
|
|
* IN EXCESS OF $1,000, NOR FOR ANY INDIRECT, INCIDENTAL, SPECIAL, |
72 |
|
|
* EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, |
73 |
|
|
* PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR |
74 |
|
|
* PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY |
75 |
|
|
* OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT |
76 |
|
|
* (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE |
77 |
|
|
* USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH |
78 |
|
|
* DAMAGE. |
79 |
|
|
* |
80 |
|
|
* ==================================================================== |
81 |
|
|
* |
82 |
|
|
* This software consists of voluntary contributions made by Vovida |
83 |
|
|
* Networks, Inc. and many individuals on behalf of Vovida Networks, |
84 |
|
|
* Inc. For more information on Vovida Networks, Inc., please see |
85 |
|
|
* <http://www.vovida.org/>. |
86 |
|
|
* |
87 |
|
|
*/ |