Yurttas/PL/OOL/Cplusplus/F/07/06/00/04/bubblesort.h

 1// bubblesort.h
 2
 3
 4enum YN {Yes='Y',
 5         No='N'};
 6
 7typedef enum YN YN;
 8
 9enum AD {Ascending='A',
10         Descending='D'};
11
12typedef enum AD AD;
13
14char get_char(string);
15
16#include "get_vector_item.cpp"
17
18#include "bubblesort.cpp"
19
20#include "put_vector_item.cpp"