~ubuntu-branches/ubuntu/saucy/kopete/saucy-proposed

« back to all changes in this revision

Viewing changes to protocols/jabber/libiris/src/xmpp/base/unittest/incrementingrandomnumbergenerator.h

  • Committer: Package Import Robot
  • Author(s): Jonathan Riddell
  • Date: 2013-06-21 02:22:39 UTC
  • Revision ID: package-import@ubuntu.com-20130621022239-63l3zc8p0nf26pt6
Tags: upstream-4.10.80
ImportĀ upstreamĀ versionĀ 4.10.80

Show diffs side-by-side

added added

removed removed

Lines of Context:
 
1
/*
 
2
 * Copyright (C) 2008  Remko Troncon
 
3
 *
 
4
 * This library is free software; you can redistribute it and/or
 
5
 * modify it under the terms of the GNU Lesser General Public
 
6
 * License as published by the Free Software Foundation; either
 
7
 * version 2.1 of the License, or (at your option) any later version.
 
8
 *
 
9
 * This library is distributed in the hope that it will be useful,
 
10
 * but WITHOUT ANY WARRANTY; without even the implied warranty of
 
11
 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU
 
12
 * Lesser General Public License for more details.
 
13
 *
 
14
 * You should have received a copy of the GNU Lesser General Public
 
15
 * License along with this library; if not, write to the Free Software
 
16
 * Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA
 
17
 *
 
18
 */
 
19
 
 
20
#ifndef INCREMENTINGRANDOMNUMBERGENERATOR_H
 
21
#define INCREMENTINGRANDOMNUMBERGENERATOR_H
 
22
 
 
23
#include <QtDebug>
 
24
 
 
25
#include "xmpp/base/randomnumbergenerator.h"
 
26
 
 
27
namespace XMPP {
 
28
        class IncrementingRandomNumberGenerator : public RandomNumberGenerator
 
29
        {
 
30
                public:
 
31
                        IncrementingRandomNumberGenerator(int maximumNumber = 10) : maximumNumber_(maximumNumber), currentNumber_(maximumNumber_) {}
 
32
                
 
33
                        virtual double generateNumber() const {
 
34
                                currentNumber_ = (currentNumber_ + 1) % (maximumNumber_ + 1); 
 
35
                                return currentNumber_;
 
36
                        }
 
37
 
 
38
                        virtual double getMaximumGeneratedNumber() const {
 
39
                                return maximumNumber_;
 
40
                        }
 
41
                
 
42
                private:
 
43
                        int maximumNumber_;
 
44
                        mutable int currentNumber_;
 
45
        };
 
46
}
 
47
 
 
48
#endif