source: git/templates/test.h @ 34942f

spielwiese
Last change on this file since 34942f was 4f6451, checked in by Oleksandr Motsak <motsak@…>, 14 years ago
More or less finished templates!
  • Property mode set to 100644
File size: 1.0 KB
Line 
1//*****************************************************************************
2// Computer Algebra System SINGULAR   
3// Copyright: See COPYING file that comes with this distribution
4//*****************************************************************************
5/** @file test.h
6 *
7 * Let's try to put parameters where they should be, compare F1 and F2.
8 *
9 * ABSTRACT: Issue reported: https://bugzilla.gnome.org/show_bug.cgi?id=316311
10 *
11 * @author Oleksandr Motsak
12 *
13 * @internal @version \$Id$
14 *
15 **/
16//*****************************************************************************
17
18  /** F1.
19   *
20   * This is function 1.
21   *
22   * @param [in] a1 some int
23   * @param [out] r1 integer result
24   *
25   * The end!
26   */
27  void F1(
28     int a1,
29     int & r1
30         );
31
32  /** F2.
33   *
34   * This is function 2.
35   *
36   * @params <- We would prefere all parameters to be here...
37   *
38   * @param [] 
39   *
40   * The end!
41   */
42  void F2(
43     int a2,  ///< [in] some int
44     int & r2 ///< [out] integer result
45         );
Note: See TracBrowser for help on using the repository browser.