1 <!DOCTYPE HTML PUBLIC
"-//W3C//DTD HTML 4.01 Transitional//EN">
2 <html><head><meta http-equiv=
"Content-Type" content=
"text/html;charset=UTF-8">
3 <title>LibSylph: Sylph/Core/Random.h Source File
</title>
4 <link href=
"doxygen.css" rel=
"stylesheet" type=
"text/css">
6 <!-- Generated by Doxygen 1.5.8 -->
7 <div class=
"navigation" id=
"top">
10 <li><a href=
"index.html"><span>Main
Page
</span></a></li>
11 <li><a href=
"namespaces.html"><span>Namespaces
</span></a></li>
12 <li><a href=
"annotated.html"><span>Classes
</span></a></li>
13 <li class=
"current"><a href=
"files.html"><span>Files
</span></a></li>
18 <li><a href=
"files.html"><span>File
List
</span></a></li>
21 <h1>Sylph/Core/Random.h
</h1><div class=
"fragment"><pre class=
"fragment"><a name=
"l00001"></a>00001 <span class=
"comment">/*
</span>
22 <a name=
"l00002"></a>00002 <span class=
"comment"> * LibSylph Class Library
</span>
23 <a name=
"l00003"></a>00003 <span class=
"comment"> * Copyright (C)
2009 Frank
"SeySayux" Erens
<seysayux@gmail.com
></span>
24 <a name=
"l00004"></a>00004 <span class=
"comment"> *
</span>
25 <a name=
"l00005"></a>00005 <span class=
"comment"> * This library is free software; you can redistribute it and/or
</span>
26 <a name=
"l00006"></a>00006 <span class=
"comment"> * modify it under the terms of the LibSylph Pulbic License as published
</span>
27 <a name=
"l00007"></a>00007 <span class=
"comment"> * by the LibSylph Developers; either version
1.0 of the License, or
</span>
28 <a name=
"l00008"></a>00008 <span class=
"comment"> * (at your option) any later version.
</span>
29 <a name=
"l00009"></a>00009 <span class=
"comment"> *
</span>
30 <a name=
"l00010"></a>00010 <span class=
"comment"> * This library is distributed in the hope that it will be useful,
</span>
31 <a name=
"l00011"></a>00011 <span class=
"comment"> * but WITHOUT ANY WARRANTY; without even the implied warranty of
</span>
32 <a name=
"l00012"></a>00012 <span class=
"comment"> * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the LibSylph
</span>
33 <a name=
"l00013"></a>00013 <span class=
"comment"> * Public License for more details.
</span>
34 <a name=
"l00014"></a>00014 <span class=
"comment"> *
</span>
35 <a name=
"l00015"></a>00015 <span class=
"comment"> * You should have received a copy of the LibSylph Public License
</span>
36 <a name=
"l00016"></a>00016 <span class=
"comment"> * along with this Library, if not, contact the LibSylph Developers.
</span>
37 <a name=
"l00017"></a>00017 <span class=
"comment"> *
</span>
38 <a name=
"l00018"></a>00018 <span class=
"comment"> * Created on
7 maart
2009,
13:
32</span>
39 <a name=
"l00019"></a>00019 <span class=
"comment"> */
</span>
40 <a name=
"l00020"></a>00020
41 <a name=
"l00021"></a>00021 <span class=
"preprocessor">#ifndef RANDOM_H_
</span>
42 <a name=
"l00022"></a>00022 <span class=
"preprocessor"></span><span class=
"preprocessor">#define RANDOM_H_
</span>
43 <a name=
"l00023"></a>00023 <span class=
"preprocessor"></span>
44 <a name=
"l00024"></a>00024 <span class=
"preprocessor">#include
"Object.h"</span>
45 <a name=
"l00025"></a>00025 <span class=
"preprocessor">#include
"String.h"</span>
46 <a name=
"l00026"></a>00026 <span class=
"preprocessor">#include
"Primitives.h"</span>
47 <a name=
"l00027"></a>00027
48 <a name=
"l00028"></a>00028 SYLPH_BEGIN_NAMESPACE
49 <a name=
"l00029"></a>00029 <span class=
"keyword">class
</span>ByteBuffer;
50 <a name=
"l00030"></a>00030 SYLPH_PUBLIC
51 <a name=
"l00031"></a>00031 <span class=
"keyword">class
</span>Random :
<span class=
"keyword">public
</span> <span class=
"keyword">virtual
</span> Object {
52 <a name=
"l00032"></a>00032 <span class=
"keyword">public
</span>:
53 <a name=
"l00033"></a>00033 Random();
54 <a name=
"l00034"></a>00034 Random(
<span class=
"keywordtype">long
</span> seed);
55 <a name=
"l00035"></a>00035 Random(
<span class=
"keyword">const
</span> Random
& orig);
56 <a name=
"l00036"></a>00036 <span class=
"keyword">virtual
</span> ~Random();
57 <a name=
"l00037"></a>00037
58 <a name=
"l00038"></a>00038 byte nextByte();
59 <a name=
"l00039"></a>00039 <span class=
"keywordtype">short
</span> nextShort();
60 <a name=
"l00040"></a>00040 <span class=
"keywordtype">int
</span> nextInt();
61 <a name=
"l00041"></a>00041 <span class=
"keywordtype">long
</span> nextLong();
62 <a name=
"l00042"></a>00042 <span class=
"keywordtype">float
</span> nextFloat();
63 <a name=
"l00043"></a>00043 <span class=
"keywordtype">double
</span> nextDouble();
64 <a name=
"l00044"></a>00044 <span class=
"keywordtype">bool
</span> nextBool();
65 <a name=
"l00045"></a>00045 String nextString();
<span class=
"comment">//base64?
</span>
66 <a name=
"l00046"></a>00046 ByteBuffer nextByteBuffer(std::size_t length);
67 <a name=
"l00047"></a>00047
68 <a name=
"l00048"></a>00048 <span class=
"keyword">private
</span>:
69 <a name=
"l00049"></a>00049 <span class=
"keywordtype">long
</span> _next;
70 <a name=
"l00050"></a>00050 };
71 <a name=
"l00051"></a>00051 SYLPH_END_NAMESPACE
72 <a name=
"l00052"></a>00052
73 <a name=
"l00053"></a>00053 <span class=
"preprocessor">#endif
</span><span class=
"comment">/* RANDOM_H_ */
</span>
74 <a name=
"l00054"></a>00054
76 <hr size=
"1" class=
"unhidden"><address style=
"text-align: right;"><small>
77 Documentation for LibSylph by Doxygen