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

« back to all changes in this revision

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