Changeset 3155
- Timestamp:
- Jan 3, 2014, 9:04:11 AM (10 years ago)
- Location:
- branches/0.11-stable
- Files:
-
- 5 edited
Legend:
- Unmodified
- Added
- Removed
-
branches/0.11-stable/README.developer
r3132 r3155 106 106 '''Internal Interface''' 107 107 108 Helper functions and classes that are not part of yat API should either be 109 labeled with doxygen flag `\internal` or placed in sub-namespace `detail`. 108 Helper functions and classes that are not part of yat API should 109 either be labeled with doxygen flag `\internal` or placed in 110 sub-namespace `detail`. Functionality placed in namespace `detail` 111 should be excluded from doxygen input using a pattern like this: 112 113 /// \cond IGNORE_DOXYGEN 114 namespace detail { 115 116 <Some very detailed code here> 117 118 } 119 /// \endcode 110 120 111 121 = Build = -
branches/0.11-stable/yat/utility/CommandLine.h
r3114 r3155 209 209 210 210 // use cond to make doxygen ignore this privat class 211 /// \cond yat_ignore_this211 /// \cond IGNORE_DOXYGEN 212 212 struct OptionCompare 213 213 { -
branches/0.11-stable/yat/utility/iterator_traits.h
r2472 r3155 55 55 56 56 57 /// \cond IGNORE_DOXYGEN 58 57 59 namespace detail { 58 60 /** … … 83 85 84 86 } // namespace detail 87 88 /// \endcond 85 89 86 90 … … 106 110 107 111 112 /// \cond IGNORE_DOXYGEN 108 113 namespace detail { 109 114 /** … … 136 141 }; 137 142 } // namespace detail 143 144 /// \endcond 145 138 146 139 147 /** … … 165 173 }; 166 174 175 /// \cond IGNORE_DOXYGEN 167 176 namespace detail { 168 177 /** … … 174 183 check_iterator_is_unweighted(utility::unweighted_iterator_tag x){} 175 184 } // namespace detail 185 186 /// \endcond 176 187 177 188 /** … … 187 198 188 199 200 /// \cond IGNORE_DOXYGEN 189 201 namespace detail { 190 202 … … 380 392 } // namespace detail 381 393 394 /// \endcond 395 396 382 397 /** 383 398 The purpose of this class is to allow polymorphism between -
branches/0.11-stable/yat/utility/utility.h
r3066 r3155 274 274 T log2(T x) { return std::log(x)/M_LN2; } 275 275 276 /// \cond IGNORE_DOXYGEN 277 276 278 // private namespace 277 279 namespace detail { 278 280 279 281 /** 282 \internal 283 280 284 \brief convert s to t 281 285 … … 328 332 329 333 } // end of namespace detail 334 335 /// \endcond 330 336 331 337 … … 478 484 } 479 485 486 /// \cond IGNORE_DOXYGEN 480 487 namespace detail { 481 488 template<typename T> … … 518 525 } // of namespace detail 519 526 527 /// \endcond 528 520 529 }}} // of namespace utility, yat, and theplu 521 530 -
branches/0.11-stable/yat/utility/yat_assert.h
r3114 r3155 33 33 namespace utility { 34 34 35 /// \cond IGNORE_DOXYGEN 36 35 37 /** 36 38 \internal … … 47 49 { } 48 50 #endif 51 52 /// \endcond 49 53 50 54 }}}
Note: See TracChangeset
for help on using the changeset viewer.