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

From ZCubes Wiki
Jump to navigation Jump to search
 1// bubblesort.h
 2
 3
 4enum AD {Ascending='A',
 5         Descending='D'};
 6
 7typedef enum AD AD;
 8
 9char get_char(string);
10
11#include "get_vector_item.cpp"
12
13#include "bubblesort.cpp"
14
15#include "put_vector_item.cpp"