GenreType.h
2.33 KB
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
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
#pragma once
#include<iostream>
#include<string>
#include"SortedLinkedList.h"
#include"SimplifiedType.h"
using namespace std;
/**
* @brief 과제 1에서 이 클래스는 쓰이지 않는다.
*/
class GenreType //현재 이 장르타입은 쓰지 않는다.
{
public:
GenreType()
{
G_num = -1;
G_name = "";
} //기본 생성자
~GenreType()
{
} //기본 소멸자
/**
* @brief Get Genre
* @pre Genre is set.
* @post none.
* @return Genre;
*/
string GetGenre()
{
return G_name;
}
/**
* @brief Get song Number
* @pre song Name is set.
* @post none.
* @return song number
*/
int GetNum()
{
return G_num;
}
/**
* @brief set song number
* @pre x
* @post song number is set
* @param num song number
*/
void SetNum(int num)
{
G_num = num;
}
/**
* @brief set genre
* @pre x
* @post genre is set
* @param Genre Genre
*/
void SetGenre(string Genre)
{
G_name = Genre;
}
/**
* @brief 두 SimplifiedType의 Primary key가 같은지 비교함
* @pre 비교하고자 하는 SimplifiedType이 초기화 되어있어야함
* @post x
* @param data 비교하고자 하는 데이터
* @return 같을경우 true, 다를경우 false
*/
bool operator==(GenreType data)
{
if (this->GetNum() == data.GetNum())
return true;
else
return false;
}
/**
* @brief 두 SimplifiedType의 Primary key의 크기를 비교함
* @pre 비교하고자 하는 SimplifiedType이 초기화 되어있어야함
* @post x
* @param data 비교하고자 하는 데이터
* @return 좌변이 클경우 true 작을경우 false
*/
bool operator>(GenreType data)
{
if (this->GetNum() > data.GetNum())
return true;
else
return false;
}
/**
* @brief 두 SimplifiedType의 Primary key의 크기를 비교함
* @pre 비교하고자 하는 SimplifiedType이 초기화 되어있어야함
* @post x
* @param data 비교하고자 하는 데이터
* @return 우변이 클경우 true 작을경우 false
*/
bool operator<(GenreType data)
{
if (this->GetNum() < data.GetNum())
return true;
else
return false;
}
/**
* @brief GenreList안에 Simplified 타입을 넣는 함수
* @pre x
* @post 현재 GenreList에 Simplified 타입이 추가된다
* @param 추가하고자 하는 데이터
*/
void addListinGenre(SimplifiedType in)
{
G_List.Add(in);
}
/**
* @brief 현 GenreList안의 모든 데이터를 출력하는함수
* @pre GenreList안의 원소가 초기화 되어있어야함
* @post x
*/
void PrintAll()
{
}
private:
int G_num; //장르 넘버 = Primary Key
string G_name; //장르 명
SortedLinkedList<SimplifiedType> G_List; //각 장르별 장르리스트
};