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

« back to all changes in this revision

Viewing changes to resip/dum/ExternalMessageHandler.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_EXTERNALMESSAGEHANDLER_HXX)
 
2
#define RESIP_EXTERNALMESSAGEHANDLER_HXX
 
3
 
 
4
namespace resip
 
5
{
 
6
class ExternalMessageBase;
 
7
class ExternalMessageHandler
 
8
{
 
9
   public:
 
10
      virtual ~ExternalMessageHandler() 
 
11
      {
 
12
      };
 
13
         
 
14
      virtual void onMessage(ExternalMessageBase* externalMessage, bool& handled)=0;
 
15
};
 
16
}
 
17
 
 
18
#endif
 
19
 
 
20
/* ====================================================================
 
21
* The Vovida Software License, Version 1.0 
 
22
 
23
* Copyright (c) 2000 Vovida Networks, Inc.  All rights reserved.
 
24
 
25
* Redistribution and use in source and binary forms, with or without
 
26
* modification, are permitted provided that the following conditions
 
27
* are met:
 
28
 
29
* 1. Redistributions of source code must retain the above copyright
 
30
*    notice, this list of conditions and the following disclaimer.
 
31
 
32
* 2. Redistributions in binary form must reproduce the above copyright
 
33
*    notice, this list of conditions and the following disclaimer in
 
34
*    the documentation and/or other materials provided with the
 
35
*    distribution.
 
36
 
37
* 3. The names "VOCAL", "Vovida Open Communication Application Library",
 
38
*    and "Vovida Open Communication Application Library (VOCAL)" must
 
39
*    not be used to endorse or promote products derived from this
 
40
*    software without prior written permission. For written
 
41
*    permission, please contact vocal@vovida.org.
 
42
*
 
43
* 4. Products derived from this software may not be called "VOCAL", nor
 
44
*    may "VOCAL" appear in their name, without prior written
 
45
*    permission of Vovida Networks, Inc.
 
46
 
47
* THIS SOFTWARE IS PROVIDED "AS IS" AND ANY EXPRESSED OR IMPLIED
 
48
* WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES
 
49
* OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE, TITLE AND
 
50
* NON-INFRINGEMENT ARE DISCLAIMED.  IN NO EVENT SHALL VOVIDA
 
51
* NETWORKS, INC. OR ITS CONTRIBUTORS BE LIABLE FOR ANY DIRECT DAMAGES
 
52
* IN EXCESS OF $1,000, NOR FOR ANY INDIRECT, INCIDENTAL, SPECIAL,
 
53
* EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO,
 
54
* PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR
 
55
* PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY
 
56
* OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT
 
57
* (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE
 
58
* USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH
 
59
* DAMAGE.
 
60
 
61
* ====================================================================
 
62
 
63
* This software consists of voluntary contributions made by Vovida
 
64
* Networks, Inc. and many individuals on behalf of Vovida Networks,
 
65
* Inc.  For more information on Vovida Networks, Inc., please see
 
66
* <http://www.vovida.org/>.
 
67
*
 
68
*/