spielwiese
Last change
on this file since 6ce030f was
6ce030f,
checked in by Oleksandr Motsak <motsak@…>, 11 years ago
|
removal of the $Id$ svn tag from everywhere
NOTE: the git SHA1 may be used instead (only on special places)
NOTE: the libraries Singular/LIB/*.lib still contain the marker due to our current use of svn
|
-
Property mode set to
100644
|
File size:
1.1 KB
|
Rev | Line | |
---|
[7a452a7] | 1 | // -*- Mode: C++; tab-width: 2; indent-tabs-mode: nil; c-basic-offset: 2 -*- |
---|
| 2 | /*****************************************************************************\ |
---|
| 3 | * Computer Algebra System SINGULAR |
---|
| 4 | \*****************************************************************************/ |
---|
[4f6451] | 5 | /** @file test.h |
---|
| 6 | * |
---|
| 7 | * Let's try to put parameters where they should be, compare F1 and F2. |
---|
[d236a6] | 8 | * |
---|
[4f6451] | 9 | * ABSTRACT: Issue reported: https://bugzilla.gnome.org/show_bug.cgi?id=316311 |
---|
[d236a6] | 10 | * |
---|
[4f6451] | 11 | * @author Oleksandr Motsak |
---|
[d236a6] | 12 | * |
---|
[4f6451] | 13 | * |
---|
| 14 | **/ |
---|
[7a452a7] | 15 | /*****************************************************************************/ |
---|
[d236a6] | 16 | |
---|
| 17 | /** F1. |
---|
[4f6451] | 18 | * |
---|
| 19 | * This is function 1. |
---|
[d236a6] | 20 | * |
---|
| 21 | * @param [in] a1 some int |
---|
| 22 | * @param [out] r1 integer result |
---|
| 23 | * |
---|
| 24 | * The end! |
---|
| 25 | */ |
---|
| 26 | void F1( |
---|
| 27 | int a1, |
---|
| 28 | int & r1 |
---|
| 29 | ); |
---|
| 30 | |
---|
| 31 | /** F2. |
---|
[4f6451] | 32 | * |
---|
| 33 | * This is function 2. |
---|
[d236a6] | 34 | * |
---|
| 35 | * @params <- We would prefere all parameters to be here... |
---|
| 36 | * |
---|
| 37 | * @param [] |
---|
| 38 | * |
---|
| 39 | * The end! |
---|
| 40 | */ |
---|
| 41 | void F2( |
---|
| 42 | int a2, ///< [in] some int |
---|
| 43 | int & r2 ///< [out] integer result |
---|
| 44 | ); |
---|
[7a452a7] | 45 | |
---|
| 46 | |
---|
| 47 | // Vi-modeline: vim: filetype=c:syntax:shiftwidth=2:tabstop=8:textwidth=0:expandtab |
---|
Note: See
TracBrowser
for help on using the repository browser.