Hello,
I am making an oversimplified, small ATM machine emulation program. I haven't completed the code yet. but when I was trying to build my half written program, I got the erro C1083:
1>------ Build started: Project: ATM, Configuration: Debug Win32 ------
1>Compiling...
1>ATM.cpp
1>c:\users\devjeet\documents\visual studio 2008\projects\atm\atm\atm.h(6) : fatal error C1083: Cannot open include file: 'account.h': No such file or directory
1>main.cpp
1>c:\users\devjeet\documents\visual studio 2008\projects\atm\atm\atm.h(6) : fatal error C1083: Cannot open include file: 'account.h': No such file or directory
1>Generating Code...
1>Build log was saved at "file://c:\Users\Devjeet\Documents\Visual Studio 2008\Projects\ATM\ATM\Debug\BuildLog.htm"
1>ATM - 2 error(s), 0 warning(s)
========== Build: 0 succeeded, 1 failed, 0 up-to-date, 0 skipped ==========
Here is my source code. Please help me figure out the problem.
//ATM.cpp
#include <iostream>
using std::cout;
using std::cin;
using std::endl;
#include <string>
using std::string;
using std::getline;
#include "ATM.h"
ATM::ATM()
{
menu();
}
void ATM::menu()
{
int length;
system("cls");
cout<<"Please Number Of Accounts:\n";
cin>>length;
List= new account[length);
}