From ce793e31f387c0715fa5b50c20e06510cc3e95ff Mon Sep 17 00:00:00 2001 From: Mike Buland Date: Tue, 22 May 2012 17:15:40 +0000 Subject: Moved random to stable, just needs some minor tweaks. But it's already in use in a couple of core components, including in tempFile name generation. --- src/experimental/randomcmwc.h | 29 ----------------------------- 1 file changed, 29 deletions(-) delete mode 100644 src/experimental/randomcmwc.h (limited to 'src/experimental/randomcmwc.h') diff --git a/src/experimental/randomcmwc.h b/src/experimental/randomcmwc.h deleted file mode 100644 index 747eb6a..0000000 --- a/src/experimental/randomcmwc.h +++ /dev/null @@ -1,29 +0,0 @@ -/* - * 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_CMWC_H -#define BU_RANDOM_CMWC_H - -#include "bu/randombase.h" - -namespace Bu -{ - class RandomCmwc : public RandomBase - { - public: - RandomCmwc(); - virtual ~RandomCmwc(); - - virtual void seed( int32_t iSeed ); - - virtual int32_t rand(); - - private: - uint32_t *q, c; - }; -}; - -#endif -- cgit v1.2.3