# HG changeset patch # User alpar # Date 1100438146 0 # Node ID e619a466ca5de62d6dcf0d95d8af13e6f1271437 # Parent 407e4d47fdd3d88fdf31d844de7f1e1b35059eb7 - Move template.h to doc/. - Insert the license terms into the documentation. - template.h now appears under the coding style documentation. diff -r 407e4d47fdd3 -r e619a466ca5d doc/Doxyfile --- a/doc/Doxyfile Sun Nov 14 11:16:36 2004 +0000 +++ b/doc/Doxyfile Sun Nov 14 13:15:46 2004 +0000 @@ -430,6 +430,7 @@ coding_style.dox \ groups.dox \ namespaces.dox \ + license.dox \ ../src/lemon \ ../src/lemon/concept \ ../src/test/test_tools.h @@ -470,7 +471,7 @@ # directories that contain example code fragments that are included (see # the \include command). -EXAMPLE_PATH = ../src/demo +EXAMPLE_PATH = ../src/demo ../LICENSE . # If the value of the EXAMPLE_PATH tag contains directories, you can use the # EXAMPLE_PATTERNS tag to specify one or more wildcard pattern (like *.cpp diff -r 407e4d47fdd3 -r e619a466ca5d doc/coding_style.dox --- a/doc/coding_style.dox Sun Nov 14 11:16:36 2004 +0000 +++ b/doc/coding_style.dox Sun Nov 14 13:15:46 2004 +0000 @@ -77,4 +77,10 @@ ClassNameEndsWithException \endcode +\section header-template Template Header File + +Each Lemon header file should look like this: + +\include template.h + */ diff -r 407e4d47fdd3 -r e619a466ca5d doc/mainpage.dox --- a/doc/mainpage.dox Sun Nov 14 11:16:36 2004 +0000 +++ b/doc/mainpage.dox Sun Nov 14 13:15:46 2004 +0000 @@ -11,8 +11,14 @@ It is a C++ template library aimed at combinatorial optimization tasks which often involve in working -with graphs. As the name also suggests, its development was started by -Hungarian people. +with graphs. + + +LEMON is an open source project. +You are free to use it in your commertial or +non-commertial applications under very permissive +\ref license "license terms". + \subsection howtoread How to read this document diff -r 407e4d47fdd3 -r e619a466ca5d doc/template.h --- /dev/null Thu Jan 01 00:00:00 1970 +0000 +++ b/doc/template.h Sun Nov 14 13:15:46 2004 +0000 @@ -0,0 +1,20 @@ +/* -*- C++ -*- + * src/lemon/template.h - Part of LEMON, a generic C++ optimization library + * + * Copyright (C) 2004 Egervary Jeno Kombinatorikus Optimalizalasi Kutatocsoport + * (Egervary Combinatorial Optimization Research Group, EGRES). + * + * Permission to use, modify and distribute this software is granted + * provided that this copyright notice appears in all copies. For + * precise terms see the accompanying LICENSE file. + * + * This software is provided "AS IS" with no warranty of any kind, + * express or implied, and with no claim as to its suitability for any + * purpose. + * + */ + +#ifndef LEMON_TEMPLATE_H +#define LEMON_TEMPLATE_H + +#endif // LEMON_TEMPLATE_H diff -r 407e4d47fdd3 -r e619a466ca5d src/lemon/template.h --- a/src/lemon/template.h Sun Nov 14 11:16:36 2004 +0000 +++ /dev/null Thu Jan 01 00:00:00 1970 +0000 @@ -1,20 +0,0 @@ -/* -*- C++ -*- - * src/lemon/template.h - Part of LEMON, a generic C++ optimization library - * - * Copyright (C) 2004 Egervary Jeno Kombinatorikus Optimalizalasi Kutatocsoport - * (Egervary Combinatorial Optimization Research Group, EGRES). - * - * Permission to use, modify and distribute this software is granted - * provided that this copyright notice appears in all copies. For - * precise terms see the accompanying LICENSE file. - * - * This software is provided "AS IS" with no warranty of any kind, - * express or implied, and with no claim as to its suitability for any - * purpose. - * - */ - -#ifndef LEMON_TEMPLATE_H -#define LEMON_TEMPLATE_H - -#endif // LEMON_TEMPLATE_H