c++/ukazatele/barvicky.h
author František Kučera <franta-hg@frantovo.cz>
Fri, 15 May 2020 20:32:37 +0200
changeset 59 d6614ad97bed
parent 12 7b718fcf981c
permissions -rw-r--r--
LV2: modul zesilovače, dle oficiálního příkladu, ale bez závislosti na Pythonu – stačí gcc a make
     1 #include <string>
     2 
     3 using namespace std;
     4 
     5 const int BARVA_CERVENA = 1;
     6 const int BARVA_ZELENA  = 2;
     7 
     8 string obarvi (string text, int barva);
     9 string obarvi (const char * text, int barva);
    10