Добавил:
Опубликованный материал нарушает ваши авторские права? Сообщите нам.
Вуз: Предмет: Файл:
Скачиваний:
82
Добавлен:
10.12.2013
Размер:
628 б
Скачать
//Bibl.h
#ifndef CLASS
#define CLASS
//-----------------------------------------------------------------------
#include<iostream.h>
#include<fstream.h>
#include<afx.h>
//-----------------------------------------------------------------------
class BIBL
{
	char name[30]; 
	char autor[30];
	float price;
public:
	BIBL ();
	BIBL (char*,char*,float);
	BIBL (const BIBL&);
	~BIBL ();
	char* GetName();
	void Input();
	void Show();
	friend istream& operator>>(istream&,BIBL&);
	friend ostream& operator<<(ostream&,BIBL&);
};
//-----------------------------------------------------------------------
#endif 
Соседние файлы в папке Lab_7