Это объявление функции дает мне ошибки:
ostream& operator<<(ostream& os, hand& obj);
Ошибки:
error C2143: syntax error : missing ';' before '&'
error C4430: missing type specifier
error C2065: 'os' : undeclared identifier
error C2065: 'obj' : undeclared identifier
error C2275: 'hand' : illegal use of this type as an expression
see declaration of 'hand'
error C4430: missing type specifier
hand - это класс, который я создал, display - открытый элемент данных типа char*
.
Может кто-нибудь сказать мне, что я делаю не так?