diff options
author | Mike Buland <eichlan@xagasoft.com> | 2012-11-08 22:58:28 +0000 |
---|---|---|
committer | Mike Buland <eichlan@xagasoft.com> | 2012-11-08 22:58:28 +0000 |
commit | 52be1ef0d126f09ba943c7afcf367e7d9347f2fd (patch) | |
tree | fd4b0dd148751c3c6c1b95296c3b82cb86051b83 /src/plugins/pluginConditionRandom.cpp | |
parent | 795d0737fed40d88a7801b451b7750ba90802345 (diff) | |
download | build-52be1ef0d126f09ba943c7afcf367e7d9347f2fd.tar.gz build-52be1ef0d126f09ba943c7afcf367e7d9347f2fd.tar.bz2 build-52be1ef0d126f09ba943c7afcf367e7d9347f2fd.tar.xz build-52be1ef0d126f09ba943c7afcf367e7d9347f2fd.zip |
tabconv: it's all spaces now.
Diffstat (limited to '')
-rw-r--r-- | src/plugins/pluginConditionRandom.cpp | 34 |
1 files changed, 17 insertions, 17 deletions
diff --git a/src/plugins/pluginConditionRandom.cpp b/src/plugins/pluginConditionRandom.cpp index 42a4e00..facd201 100644 --- a/src/plugins/pluginConditionRandom.cpp +++ b/src/plugins/pluginConditionRandom.cpp | |||
@@ -4,28 +4,28 @@ | |||
4 | class ConditionRandom : public Condition | 4 | class ConditionRandom : public Condition |
5 | { | 5 | { |
6 | public: | 6 | public: |
7 | ConditionRandom() | 7 | ConditionRandom() |
8 | { | 8 | { |
9 | } | 9 | } |
10 | 10 | ||
11 | virtual ~ConditionRandom() | 11 | virtual ~ConditionRandom() |
12 | { | 12 | { |
13 | } | 13 | } |
14 | 14 | ||
15 | virtual bool shouldExec( class Runner &, class Target & ) | 15 | virtual bool shouldExec( class Runner &, class Target & ) |
16 | { | 16 | { |
17 | if( (random()/(double)RAND_MAX) >= .5 ) | 17 | if( (random()/(double)RAND_MAX) >= .5 ) |
18 | return true; | 18 | return true; |
19 | return false; | 19 | return false; |
20 | } | 20 | } |
21 | 21 | ||
22 | virtual Condition *clone() | 22 | virtual Condition *clone() |
23 | { | 23 | { |
24 | return new ConditionRandom(); | 24 | return new ConditionRandom(); |
25 | } | 25 | } |
26 | }; | 26 | }; |
27 | 27 | ||
28 | #include <bu/plugger.h> | 28 | #include <bu/plugger.h> |
29 | PluginInterface3( pluginConditionRandom, random, ConditionRandom, Condition, | 29 | PluginInterface3( pluginConditionRandom, random, ConditionRandom, Condition, |
30 | "Mike Buland", 0, 1 ); | 30 | "Mike Buland", 0, 1 ); |
31 | 31 | ||