Alexander Afanasyev | e9fdb80 | 2014-02-05 17:36:51 -0800 | [diff] [blame] | 1 | /** |
2 | * Copyright (C) 2013 Regents of the University of California. | ||||
3 | * See COPYING for copyright and distribution information. | ||||
4 | */ | ||||
5 | |||||
6 | #ifndef NDN_UTIL_RANDOM_HPP | ||||
7 | #define NDN_UTIL_RANDOM_HPP | ||||
8 | |||||
9 | #include "../common.hpp" | ||||
10 | |||||
11 | namespace ndn { | ||||
12 | namespace random { | ||||
13 | |||||
14 | uint32_t | ||||
15 | generateWord32(); | ||||
16 | |||||
17 | } // namespace random | ||||
18 | } // namespace ndn | ||||
19 | |||||
20 | #endif // NDN_UTIL_RANDOM_HPP |