how do i fix this error i have no precompiled headers and everything i have tried has not worked
here is all my code
#include "Cardgame.h"
#include<isotream>
using namespace std;
Cardgame::Cardgame(int p)
{
players = p;
totalparticipants += p;
cout << " players have started a new game. there are now" << totalparticipants >> " players in total." << endl;
}
Cardgame::~Cardgame(void)
{
}
__________________________________________________ _________
#pragma once
class Cardgame
{
int players;
static int totalparticipants;
public:
Cardgame(int p);
~Cardgame(void);
};
__________________________________________________ __________________
#include "Cardgame.h"
int Cardgame::totalparticipants = 0;
int main()
{
Cardgame *bridge = 0;
Cardgame *blackjack = 0;
Cardgame *solitaire = 0;
Cardgame *poker = 0;
bridge= new Cardgame(4);
blackjack= new Cardgame(8);
solitaire= new Cardgame(1);
delete blackjack;
delete bridge;
poker= new Cardgame(5);
delete solitaire;
delete poker;
return 0;
}
__________________________________________________ _________
and i keep getting this error
1>------ Build started: Project: game2, Configuration: Debug Win32 ------
1> Cardgame.cpp
1>c:\documents and settings\wigundlach\my documents\visual studio 2010\projects\game2\game2\cardgame.cpp(2): fatal error C1083: Cannot open include file: 'isotream': No such file or directory
========== Build: 0 succeeded, 1 failed, 0 up-to-date, 0 skipped ==========
please help