-
Notifications
You must be signed in to change notification settings - Fork 9
Expand file tree
/
Copy pathCSortingMain.h
More file actions
34 lines (27 loc) · 1.3 KB
/
CSortingMain.h
File metadata and controls
34 lines (27 loc) · 1.3 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
/******************************************************************************
.88888. 888888ba dP dP
d8' `88 88 `8b 88 88
88 a88aaaa8P' 88 88
88 YP88 88 88 88
Y8. .88 88 Y8. .8P
`88888' dP `Y88888P'
a88888b. dP oo
d8' `88 88
88 .d8888b. 88d8b.d8b. 88d888b. dP dP d8888P dP 88d888b. .d8888b.
88 88' `88 88'`88'`88 88' `88 88 88 88 88 88' `88 88' `88
Y8. .88 88. .88 88 88 88 88. .88 88. .88 88 88 88 88 88. .88
Y88888P' `88888P' dP dP dP 88Y888P' `88888P' dP dP dP dP `8888P88
88 .88
dP d8888P
******************************************************************************/
#ifndef _CASSIGNMENT5_H
#define _CASSIGNMENT5_H
#include "../Common/CAssignmentBase.h"
//! Assignment5 solution
class CSortingMain : public CAssignmentBase
{
public:
virtual ~CSortingMain() {};
virtual bool DoCompute();
};
#endif // _CASSIGNMENT5_H