# HG changeset patch # User alpar # Date 1124315570 0 # Node ID 9c7834ac5e64a64e60bc32db81794da9173a3be1 # Parent aec340db8fc241ea4ad20d08a14c50e5f5a3bbb3 - Better insertion of sources examples - Superfluous #include removed from reader_writer_demo.cc diff -r aec340db8fc2 -r 9c7834ac5e64 demo/reader_writer_demo.cc --- a/demo/reader_writer_demo.cc Wed Aug 17 20:39:11 2005 +0000 +++ b/demo/reader_writer_demo.cc Wed Aug 17 21:52:50 2005 +0000 @@ -26,7 +26,6 @@ #include #include -#include #include #include diff -r aec340db8fc2 -r 9c7834ac5e64 doc/getstart.dox --- a/doc/getstart.dox Wed Aug 17 20:39:11 2005 +0000 +++ b/doc/getstart.dox Wed Aug 17 21:52:50 2005 +0000 @@ -227,7 +227,9 @@ demo/hello_lemon.cc in the LEMON package) to have a first working program that uses library LEMON. -\include hello_lemon.cc +\dontinclude hello_lemon.cc +\skip include +\until } First let us briefly explain how this program works. diff -r aec340db8fc2 -r 9c7834ac5e64 doc/quicktour.dox --- a/doc/quicktour.dox Wed Aug 17 20:39:11 2005 +0000 +++ b/doc/quicktour.dox Wed Aug 17 21:52:50 2005 +0000 @@ -47,7 +47,9 @@ the LEMON graph types: the typedefs in the beginning are for convenience and we will assume them later as well. -\include hello_lemon.cc +\dontinclude hello_lemon.cc +\skip include +\until } See the whole program in file \ref hello_lemon.cc in the \c demo subdir of LEMON package. @@ -95,7 +97,10 @@ Finally let us give a simple example that reads a graph from a file and writes it to the standard output. -\include reader_writer_demo.cc +\dontinclude reader_writer_demo.cc +\skip include +\until return +\until } See the whole program in file \ref reader_writer_demo.cc.