/*************************************************************************** documenter.cpp - description ------------------- begin : Tue Nov 18 01:45:35 2003 copyright : (C) 1999-2008 by Cavalli Andrea author : : cavalli $ date : : 2003/12/09 11:10:33 $ id : : coor.h,v 1.1.2.2 2003/12/09 11:10:33 cavalli Exp $ email : cavalli@bioc.unizh.ch amc82@cam.ac.uk **************************************************************************/ /*************************************************************************** * * * This program is free software; you can redistribute it and/or modify * * it under the terms of the GNU General Public License as published by * * the Free Software Foundation; either version 2 of the License, or * * (at your option) any later version. * * * ***************************************************************************/ #include extern void set_description(string, string); namespace Almost { // void set_documentation(string, string);//in zeta_mod void set_documentation(){ //PDB set_description("pdb", "

This module provides an (almost) complete access to Protein databank files.

"); //MDB set_description("mdb", "

The mdb module implements classes an functions to parse and edit MDB files.
" "almost uses mdb files to store informations about the topology of molecules and to store the parameters\n" "needed to build firce fields.

\n"); //Math set_description("math", "

This module provides access to the mathematical functions and constants defined by the C standard.

" "

Example

" "

print math.sin(1.2);
" "Should print 0.932039 to your console.

"); } } // Local Variables: // mode:C++ // End: