Skip to content
This repository was archived by the owner on Apr 23, 2020. It is now read-only.

Commit 0b038b9

Browse files
committed
deus
1 parent e63b080 commit 0b038b9

File tree

18 files changed

+46
-33
lines changed

18 files changed

+46
-33
lines changed

cpp/lista1jordana/Aluno.cpp

Whitespace-only changes.

cpp/lista1jordana/Aluno.hpp

Whitespace-only changes.

cpp/lista1jordana/Curso.cpp

Whitespace-only changes.

cpp/lista1jordana/Curso.hpp

Whitespace-only changes.

cpp/lista1jordana/HorarioAula.cpp

Whitespace-only changes.

cpp/lista1jordana/HorarioAula.hpp

Whitespace-only changes.

cpp/lista1jordana/Idioma.cpp

Whitespace-only changes.

cpp/lista1jordana/Idioma.hpp

Whitespace-only changes.
Lines changed: 7 additions & 33 deletions
Original file line numberDiff line numberDiff line change
@@ -1,33 +1,8 @@
1-
#include <iostream>
21
#include "Ex002.hpp"
2+
#include <iostream>
33

44
using namespace std;
55

6-
class Turma
7-
{
8-
private:
9-
/* data */
10-
public:
11-
Turma(/* args */);
12-
~Turma();
13-
};
14-
15-
Turma::Turma(/* args */)
16-
{
17-
}
18-
19-
Turma::~Turma()
20-
{
21-
}
22-
23-
class Professor
24-
{
25-
private:
26-
/* data */
27-
public:
28-
Professor(/* args */);
29-
~Professor();
30-
};
316

327
Professor::Professor(/* args */)
338
{
@@ -40,7 +15,10 @@ Professor::~Professor()
4015
class Matricula
4116
{
4217
private:
43-
/* data */
18+
int codigo;
19+
// tm diaMatricula;
20+
nota int;
21+
string situacao;
4422
public:
4523
Matricula(/* args */);
4624
~Matricula();
@@ -57,7 +35,7 @@ Matricula::~Matricula()
5735
class HorarioAula
5836
{
5937
private:
60-
/* data */
38+
6139
public:
6240
HorarioAula(/* args */);
6341
~HorarioAula();
@@ -135,8 +113,6 @@ Serie::~Serie()
135113
class Aluno
136114
{
137115
private:
138-
/* data */
139-
public:
140116
string matriculaInstituicao;
141117
int codigo;
142118
string CPF;
@@ -146,6 +122,7 @@ class Aluno
146122
string email;
147123
string nome;
148124
static int qtdAlunos;
125+
public:
149126

150127
Aluno(/* args */);
151128
~Aluno();
@@ -166,8 +143,5 @@ Aluno::~Aluno()
166143

167144
int main()
168145
{
169-
Aluno teste;
170-
teste.CPF = "1";
171-
cout << teste.CPF << endl;
172146
return 0;
173147
}

0 commit comments

Comments
 (0)