scusate...dovrebbe essere una banalitā..dov'č l'errore?

codice:
#include <iostream>
#include <string>

using namespace std;

class Book
{
	public:
		Book();
		Book(string ins_name, int ins_price);

		void prezzo();

	private:
		string name;
		int price;
};

void Book::prezzo()
{
	cout << "Prezzo";
	cout << price << endl;
}

int main()
{
	Book unix("bibbia", 20);

	return 0;
}