Guest_imported
New member
- Jan 1, 1970
- 0
I create a bunch of source code with the MFC AppWizard:
add 1 header file ID3v2Tag.h with content:
#ifndef __ID3V2TAG_H__
#define __ID3V2TAG_H__
class CID3v2Tag
{
};
#endif
add 1 C++ file ID3v2Tag.cpp with content:
#include "ID3v2Tag.h"
press compile and GET:
:\coding\four\id3v2tag.cpp(2) : fatal error C1010: unexpected end of file while looking for precompiled header directive
what am I doing wrong ?
add 1 header file ID3v2Tag.h with content:
#ifndef __ID3V2TAG_H__
#define __ID3V2TAG_H__
class CID3v2Tag
{
};
#endif
add 1 C++ file ID3v2Tag.cpp with content:
#include "ID3v2Tag.h"
press compile and GET:
:\coding\four\id3v2tag.cpp(2) : fatal error C1010: unexpected end of file while looking for precompiled header directive
what am I doing wrong ?