blob: 02d45c120331a6a894cce444b707d3e3bab4a9a1 [file] [log] [blame]
Alexander Afanasyev97fb44d2012-06-04 18:50:47 -07001/**
2 * \mainpage ndnSIM documentation
3 *
4 * Please refer to <a href="../index.html">ndnSIM documentation page</a>
5 */
Alexander Afanasyev1cd79ae2012-10-05 22:42:12 -07006
7// explicit instantiation and registering
8
9/**
10 * @brief ContentStore with LRU cache replacement policy
11 */
12template class ContentStoreImpl<lru_policy_traits>;
13/**
14 * @brief ContentStore with random cache replacement policy
15 */
16
17template class ContentStoreImpl<random_policy_traits>;
18
19/**
20 * @brief ContentStore with FIFO cache replacement policy
21 */
22template class ContentStoreImpl<fifo_policy_traits>;
23