Alexander Afanasyev | 97fb44d | 2012-06-04 18:50:47 -0700 | [diff] [blame] | 1 | /** |
| 2 | * \mainpage ndnSIM documentation |
| 3 | * |
| 4 | * Please refer to <a href="../index.html">ndnSIM documentation page</a> |
| 5 | */ |
Alexander Afanasyev | 1cd79ae | 2012-10-05 22:42:12 -0700 | [diff] [blame] | 6 | |
| 7 | // explicit instantiation and registering |
| 8 | |
| 9 | /** |
| 10 | * @brief ContentStore with LRU cache replacement policy |
| 11 | */ |
| 12 | template class ContentStoreImpl<lru_policy_traits>; |
| 13 | /** |
| 14 | * @brief ContentStore with random cache replacement policy |
| 15 | */ |
| 16 | |
| 17 | template class ContentStoreImpl<random_policy_traits>; |
| 18 | |
| 19 | /** |
| 20 | * @brief ContentStore with FIFO cache replacement policy |
| 21 | */ |
| 22 | template class ContentStoreImpl<fifo_policy_traits>; |