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

Revision as of 00:14, 7 November 2013 by MassBot1 (talk | contribs) (Created page with "<syntaxhighlight lang="cpp" line start="1" enclose="div">// bubblesort.h enum YN {Yes='Y', No='N'}; typedef enum YN YN; enum AD {Ascending='A', ...")
(diff) ← Older revision | Latest revision (diff) | Newer revision → (diff)
 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"