source: git/templates/template.cc @ 34942f

spielwiese
Last change on this file since 34942f was 86af43, checked in by Oleksandr Motsak <motsak@…>, 14 years ago
Our Doxygen style
  • Property mode set to 100644
File size: 722 bytes
Line 
1/*****************************************************************************\
2 * Computer Algebra System SINGULAR   
3\*****************************************************************************/
4/** @file template.cc
5 *
6 * This file implements the class Template.
7 *
8 * ABSTRACT: We need this for something...
9 *
10 * @author Oleksandr Motsak
11 *
12 * @internal @version \$Id$
13 *
14 **/
15/*****************************************************************************/
16
17// include header file
18#include "template.h"
19
20USING_NAMESPACE_SINGULARXX
21
22// compiled stuff of the class Template
23
24/// We use Algorithm ABC from Book...
25int Template::someMethod( int a, int &o )
26{
27  int b;
28
29  // return something
30  o = 2;
31  return -1;
32};
Note: See TracBrowser for help on using the repository browser.