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

« back to all changes in this revision

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