c++/ukazatele/barvicky.h
author František Kučera <franta-hg@frantovo.cz>
Tue, 09 Sep 2014 16:22:47 +0200
changeset 26 16433d4e698d
parent 12 7b718fcf981c
permissions -rw-r--r--
RAIIDemo: System.runFinalization(); místo čekání
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