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
franta-hg@12
     1
#include <string>
franta-hg@12
     2
franta-hg@12
     3
using namespace std;
franta-hg@12
     4
franta-hg@12
     5
const int BARVA_CERVENA = 1;
franta-hg@12
     6
const int BARVA_ZELENA  = 2;
franta-hg@12
     7
franta-hg@12
     8
string obarvi (string text, int barva);
franta-hg@12
     9
string obarvi (const char * text, int barva);
franta-hg@12
    10