My Project
Loading...
Searching...
No Matches
template.cc
Go to the documentation of this file.
1// -*- Mode: C++; tab-width: 2; indent-tabs-mode: nil; c-basic-offset: 2 -*-
2/*****************************************************************************\
3 * Computer Algebra System SINGULAR
4\*****************************************************************************/
5/** @file template.cc
6 *
7 * This file implements the class Template.
8 *
9 * ABSTRACT: We need this for something...
10 *
11 * @author Oleksandr Motsak
12 *
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 t = o;
28
29 // return something
30 o = a;
31 return t;
32};
33
34// Vi-modeline: vim: filetype=c:syntax:shiftwidth=2:tabstop=8:textwidth=0:expandtab
int someMethod(int a, int &o)
Brief method description.
Definition: template.cc:25
This file defines the class Template.