Commit aa29d831 by Szeberényi Imre

Merge branch 'master' of https://git.ik.bme.hu/Prog2/labor_peldak/lab_07

# Conflicts:
#	Alakzatlab2/Makefile
#	Alakzatlab2/alakzatlab2.vcxproj
#	Alakzatlab2/alakzatlab2.vcxproj.filters
parents 9e924854 1daf32d7
/**
* \file szin.h
* Szin deklarációja
*/
#ifndef SZIN_H
#define SZIN_H
#include <iostream> // ostream miatt kell
/// Szín
enum Szin { BLACK, WHITE, RED, GREEN, BLUE };
/// Háttérszín
const Szin BACKGND = BLACK;
/// Globális << operátor a Szin kiírásához
/// @param os - ostream
/// @param sz - szín
/// @return os - ostream
std::ostream& operator<<(std::ostream& os, Szin sz);
#endif // SZIN_H
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or sign in to comment