Toggle navigation
Toggle navigation
This project
Loading...
Sign in
안형준
/
Ds_worked
Go to a project
Toggle navigation
Toggle navigation pinning
Projects
Groups
Snippets
Help
Project
Activity
Repository
Pipelines
Graphs
Issues
0
Merge Requests
0
Wiki
Snippets
Network
Create a new issue
Builds
Commits
Issue Boards
Authored by
안형준
2018-11-20 22:57:10 +0900
Browse Files
Options
Browse Files
Download
Email Patches
Plain Diff
Commit
611beeab75248b83994711c26b60cf226eb8004d
611beeab
1 parent
b2a76847
??
Show whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
4 additions
and
1 deletions
Project/Application.cpp
Project/Application.cpp
View file @
611beea
...
...
@@ -183,11 +183,12 @@ void Application::Delete()
data
.
SetNumFromKB
();
//사용자에게서 곡 번호를 입력받는다.
SearchByIndex
(
data
);
DoublyIter2
<
ManageType
>
Mgiter
(
mg_List
);
ManageType
*
mgptr
;
while
(
Mgiter
.
NotNull
())
{
if
(
Mgiter
.
GetCurrentNode
().
data
.
getIndex
()
==
data
.
GetNum
())
{
ManageType
*
mgptr
=
Mgiter
.
GetCurrentPtr
();
mgptr
=
Mgiter
.
GetCurrentPtr
();
mgptr
->
Deleted
();
}
Mgiter
.
Next
();
...
...
@@ -474,6 +475,8 @@ void Application::DIsplayNewMusic()
int
cnt
=
0
;
DoublyIter2
<
ManageType
>
Mgiter
(
mg_List
);
Mgiter
.
Last
();
cout
<<
"이 아래로 터지는 이유를 찾아야함"
<<
endl
;
while
(
Mgiter
.
NotNull
()
&&
cnt
<
30
)
{
Mgiter
.
GetCurrentNode
().
data
.
PrintNameNIndex
();
...
...
Please
register
or
login
to post a comment