IBR-DTNSuite  0.8
ibrdtn/ibrdtn/utils/Random.h
Go to the documentation of this file.
00001 /*
00002  * Random.h
00003  *
00004  *  Created on: 15.06.2011
00005  *      Author: morgenro
00006  */
00007 
00008 #ifndef RANDOM_H_
00009 #define RANDOM_H_
00010 
00011 #include <string>
00012 
00013 namespace dtn
00014 {
00015         namespace utils
00016         {
00017                 class Random
00018                 {
00019                 public:
00020                         Random();
00021                         virtual ~Random();
00022 
00023                         const std::string gen_chars(size_t length) const;
00024                 };
00025         }
00026 }
00027 
00028 #endif /* RANDOM_H_ */