-
Notifications
You must be signed in to change notification settings - Fork 6
/
Copy pathlec06.cpp
50 lines (41 loc) · 1.81 KB
/
lec06.cpp
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
/*
Kurso de Esperanto - a free multimedia course to teach yourself the
international language.
Copyright (C) 2000-2012 Carlos Alberto Alves Pereira
karlo@kurso.com.br
This program is free software: you can redistribute it and/or modify
it under the terms of the GNU General Public License version 3 as
published by the Free Software Foundation.
This program is distributed in the hope that it will be useful,
but WITHOUT ANY WARRANTY; without even the implied warranty of
MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
GNU General Public License for more details.
You should have received a copy of the GNU General Public License
along with this program. If not, see <http://www.gnu.org/licenses/>.
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
Kurso de Esperanto - multrimeda komputila kurso por memlernado de
la internacia lingvo.
Kopirajto (C) 2000-2012 Carlos Alberto Alves Pereira
karlo@kurso.com.br
Tiu ĉi programo estas libera softvaro: vi povas ĝin redisdoni aŭ
ĝin modifi laŭ la kondiĉoj de GNU-a Ĝenerala Publika Uzpermeso versio 3
kiel publikigita de Free Software Foundation.
Tiu ĉi programo estas disdonita kun la espero, ke ĝi estos utila,
sed sen ia garantio; eĉ sen la implica garantio de komercebleco aŭ
taŭgeco por specifa celo. Vidu la GNU-an Ĝeneralan Publikan Uzpermeson
por pliaj detaloj.
Vi devus esti ricevinta kopion de la GNU-a Ĝenerala Publika Uzpermeso
kune kun ĉi tiu programo. Se ne, iru al <http://www.gnu.org/licenses/>.
*/
#include "lec06.h"
#include "ui_lec06.h"
lec06::lec06(QWidget *parent) :
QFrame(parent),
ui(new Ui::lec06)
{
ui->setupUi(this);
}
lec06::~lec06()
{
delete ui;
}