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

« back to all changes in this revision

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