I'm getting an error trying to use a header file. Not knowing anything about C++ makes it pretty hard to figure out why.If anybody could help me out, I'd appreciate it.
VehicleCollection.h
VehicleCollection.cppCode:#ifndef VEHICLECOLLECTION_H #define VEHICLECOLLECTION_H class VehicleCollection { public: VehicleCollection(); ~VehicleCollection(void); }; #endif
Here's the error I get in VS.NET 2003:Code:#include "VehicleCollection.h" VehicleCollection::VehicleCollection() { } VehicleCollection::~VehicleCollection(void) {}
fatal error C1010: unexpected end of file while looking for precompiled header directive



LinkBack URL
About LinkBacks
If anybody could help me out, I'd appreciate it.


