source: git/templates/test.h @ 4e654a2

spielwiese
Last change on this file since 4e654a2 was 7a452a7, checked in by Oleksandr Motsak <motsak@…>, 13 years ago
modeline for vim/emacs same header everywhere. TODO: c-source? singularxx-defs?
  • Property mode set to 100644
File size: 1.1 KB
Line 
1// -*- Mode: C++; tab-width: 2; indent-tabs-mode: nil; c-basic-offset: 2 -*-
2/*****************************************************************************\
3 * Computer Algebra System SINGULAR   
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         );
46
47
48// Vi-modeline: vim: filetype=c:syntax:shiftwidth=2:tabstop=8:textwidth=0:expandtab
Note: See TracBrowser for help on using the repository browser.