diff options
Diffstat (limited to 'includes/random.hpp')
-rw-r--r-- | includes/random.hpp | 26 |
1 files changed, 26 insertions, 0 deletions
diff --git a/includes/random.hpp b/includes/random.hpp new file mode 100644 index 0000000..1969082 --- /dev/null +++ b/includes/random.hpp @@ -0,0 +1,26 @@ +//-*- mode: c++; indent-tabs-mode: t; coding: utf-8; show-trailing-whitespace: t -*- + +// file random.hpp + +#ifndef _RANDOM_HPP +#define _RANDOM_HPP + +#include <iostream> +#include <string> + +#include "blkcom.hpp" +#include "dekspy.hpp" + +namespace randomize { + // Variables. + + //Prototypes. + double seedy(std::string *); + double randnm(const double &); + double sandnm(const double &); + +} + +#endif // _RANDOM_HPP + +// end of file random.hpp |