Stable Tag: Removing old tag
[synfig.git] / ETL / tags / 0.61.06 / test / random.cpp
1 /*! ========================================================================
2 ** Extended Template and Library Test Suite
3 ** Angle Class Test
4 ** $Id$
5 **
6 ** Copyright (c) 2002 Robert B. Quattlebaum Jr.
7 **
8 ** This package is free software; you can redistribute it and/or
9 ** modify it under the terms of the GNU General Public License as
10 ** published by the Free Software Foundation; either version 2 of
11 ** the License, or (at your option) any later version.
12 **
13 ** This package is distributed in the hope that it will be useful,
14 ** but WITHOUT ANY WARRANTY; without even the implied warranty of
15 ** MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU
16 ** General Public License for more details.
17 **
18 ** === N O T E S ===========================================================
19 **
20 ** ========================================================================= */
21
22 /* === H E A D E R S ======================================================= */
23
24 #include <ETL/random>
25
26 /* === M A C R O S ========================================================= */
27
28 using namespace etl;
29
30 /* === C L A S S E S ======================================================= */
31
32 int random_basic_test(void)
33 {
34         int ret=0;
35         random<int> Rand;
36
37         return ret;
38 }
39
40 /* === E N T R Y P O I N T ================================================= */
41
42 int main()
43 {
44         int error=0;
45
46
47         return error;
48 }