null_visitor.html 1.7 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970717273747576777879808182838485868788899091929394
  1. <HTML>
  2. <!--
  3. Copyright (c) Jeremy Siek, Lie-Quan Lee, and Andrew Lumsdaine 2000
  4. Distributed under the Boost Software License, Version 1.0.
  5. (See accompanying file LICENSE_1_0.txt or copy at
  6. http://www.boost.org/LICENSE_1_0.txt)
  7. -->
  8. <Head>
  9. <Title>Boost Graph Library: null_visitor</Title>
  10. <BODY BGCOLOR="#ffffff" LINK="#0000ee" TEXT="#000000" VLINK="#551a8b"
  11. ALINK="#ff0000">
  12. <IMG SRC="../../../boost.png"
  13. ALT="C++ Boost" width="277" height="86">
  14. <BR Clear>
  15. <H1>
  16. <pre>
  17. null_visitor
  18. </pre>
  19. </H1>
  20. This is an <a href="./EventVisitor.html">EventVisitor</a> that
  21. does nothing.
  22. <h3>Model of</h3>
  23. <a href="./EventVisitor.html">EventVisitor</a>
  24. <H2>Associated Types</H2>
  25. <table border>
  26. <tr>
  27. <th>Type</th><th>Description</th>
  28. </tr>
  29. <tr>
  30. <td><tt>null_visitor::event_filter</tt></td>
  31. <td>
  32. This type is <tt>void</tt>
  33. </td>
  34. </tr>
  35. </table>
  36. <h3>Member Functions</h3>
  37. <p>
  38. <table border>
  39. <tr>
  40. <th>Member</th><th>Description</th>
  41. </tr>
  42. <tr>
  43. <td><tt>
  44. null_visitor();
  45. </tt></td>
  46. <td>
  47. Default constructor.
  48. </td>
  49. </tr>
  50. <tr>
  51. <td><tt>
  52. template &lt;class X, class Graph&gt;<br>
  53. void operator()(X x, const Graph& g);
  54. </tt></td>
  55. <td>
  56. This does nothing.
  57. </td>
  58. </tr>
  59. </table>
  60. <br>
  61. <HR>
  62. <TABLE>
  63. <TR valign=top>
  64. <TD nowrap>Copyright &copy; 2000-2001</TD><TD>
  65. <A HREF="http://www.boost.org/people/jeremy_siek.htm">Jeremy Siek</A>,
  66. Indiana University (<A
  67. HREF="mailto:jsiek@osl.iu.edu">jsiek@osl.iu.edu</A>)<br>
  68. <A HREF="http://www.boost.org/people/liequan_lee.htm">Lie-Quan Lee</A>, Indiana University (<A HREF="mailto:llee@cs.indiana.edu">llee@cs.indiana.edu</A>)<br>
  69. <A HREF="https://homes.cs.washington.edu/~al75">Andrew Lumsdaine</A>,
  70. Indiana University (<A
  71. HREF="mailto:lums@osl.iu.edu">lums@osl.iu.edu</A>)
  72. </TD></TR></TABLE>
  73. </BODY>
  74. </HTML>