From 3e3f79bc35d94fab81cb31e42d8699a7eee102a4 Mon Sep 17 00:00:00 2001 From: Mike Buland Date: Fri, 4 May 2012 06:48:22 +0000 Subject: Minor changes, mostly comments. --- src/experimental/randombasic.h | 25 +++++++++++++++++++++++++ 1 file changed, 25 insertions(+) (limited to 'src/experimental/randombasic.h') diff --git a/src/experimental/randombasic.h b/src/experimental/randombasic.h index e69de29..2ba7bd3 100644 --- a/src/experimental/randombasic.h +++ b/src/experimental/randombasic.h @@ -0,0 +1,25 @@ +/* + * Copyright (C) 2007-2012 Xagasoft, All rights reserved. + * + * This file is part of the libbu++ library and is released under the + * terms of the license contained in the file LICENSE. + */ +#ifndef BU_RANDOM_BASIC_H +#define BU_RANDOM_BASIC_H + +#include + +namespace Bu +{ + class RandomBasic + { + public: + RandomBasic(); + virtual ~RandomBasic(); + + private: + int64_t c, m, a; + }; +}; + +#endif -- cgit v1.2.3