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

From ZCubes Wiki
Revision as of 00:13, 7 November 2013 by MassBot1 (talk | contribs) (Created page with "<syntaxhighlight lang="cpp" line start="1" enclose="div">// bubblesort.h enum AD {Ascending='A', Descending='D'}; typedef enum AD AD; char get_char(string...")
(diff) ← Older revision | Latest revision (diff) | Newer revision → (diff)
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"