~ubuntu-branches/debian/lenny/suomi-malaga/lenny

« back to all changes in this revision

Viewing changes to transmit.cc

  • Committer: Package Import Robot
  • Author(s): Timo Jyrinki
  • Date: 2008-04-29 22:39:14 UTC
  • mfrom: (1.2.1) (3.1.5 hardy)
  • Revision ID: package-import@ubuntu.com-20080429223914-0mle7xteyjuxgjc0
Tags: 1.1-1
* New upstream release
* Update debian/copyright to fix lintian warning and more

Show diffs side-by-side

added added

removed removed

Lines of Context:
1
 
// Suomi-malaga, suomen kielen muoto-opin kuvaus.
2
 
//
3
 
// Tekijänoikeus © 2006 Hannu Väisänen (Etunimi.Sukunimi@joensuu.fi)
4
 
//
5
 
// Tämä ohjelma on vapaa; tätä ohjelmaa on sallittu levittää
6
 
// edelleen ja muuttaa GNU yleisen lisenssin (GPL lisenssin)
7
 
// ehtojen mukaan sellaisina kuin Free Software Foundation
8
 
// on ne julkaissut; joko Lisenssin version 2, tai (valinnan
9
 
// mukaan) minkä tahansa myöhemmän version mukaisesti.
10
 
//
11
 
// Tätä ohjelmaa levitetään siinä toivossa, että se olisi
12
 
// hyödyllinen, mutta ilman mitään takuuta; ilman edes
13
 
// hiljaista takuuta kaupallisesti hyväksyttävästä laadusta tai
14
 
// soveltuvuudesta tiettyyn tarkoitukseen. Katso GPL
15
 
// lisenssistä lisää yksityiskohtia.
16
 
//
17
 
// Tämän ohjelman mukana pitäisi tulla kopio GPL
18
 
// lisenssistä; jos näin ei ole, kirjoita osoitteeseen Free
19
 
// Software Foundation Inc., 59 Temple Place - Suite 330,
20
 
// Boston, MA 02111-1307, USA.
21
 
//
22
 
// Tämän ohjeman linkittäminen staattisesti tai dynaamisesti
23
 
// muihin moduuleihin on ohjelmaan perustuvan teoksen
24
 
// tekemistä, joka on siis GPL lisenssin ehtojen alainen.
25
 
//
26
 
//
27
 
// This program is free software; you can redistribute it and/or modify
28
 
// it under the terms of the GNU General Public License as published by
29
 
// the Free Software Foundation; either version 2, or (at your option)
30
 
// any later version.
31
 
//
32
 
// This program is distributed in the hope that it will be useful, but
33
 
// WITHOUT ANY WARRANTY; without even the implied warranty of
34
 
// MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU
35
 
// General Public License for more details.
36
 
//
37
 
// You should have received a copy of the GNU General Public License
38
 
// along with this program; see the file COPYING.  If not, write to the
39
 
// Free Software Foundation, Inc., 59 Temple Place -  Suite 330, Boston, MA
40
 
// 02111-1307 USA.
41
 
//
42
 
// Linking this program statically or dynamically with other modules is
43
 
// making a combined work based on this program.  Thus, the terms and
44
 
// conditions of the GNU General Public License cover the whole
45
 
// combination.
46
 
 
47
 
#include <string>
48
 
#include <iostream>
49
 
 
50
 
using namespace std;
51
 
 
52
 
int main()
53
 
{
54
 
  string s;
55
 
 
56
 
  while (getline (cin, s)) {
57
 
    cout << "[]" << endl << flush;
58
 
    cerr << s << endl << flush;
59
 
  }
60
 
 
61
 
  return 0;
62
 
}