cplusplus.com cplusplus.com
cplusplus.com   C++ : Forums : General C++ Programming : problem with project
  Search:
- -
C++
Information
Documentation
Reference
Articles
Sourcecode
Forums
Forums
Beginners
Windows Programming
UNIX/Linux Programming
General C++ Programming
Articles
Lounge
Jobs

-

post  problem with project

shotjase (36)
i have 3 files my class, implementation and main.
when i compile i get an error msg about the #include "library.h" command in my implementation file

"In file included from library.cpp"

what is my problem i cant c it.

i've done my #include" " to link files the same way on all other previous projects and never had this problem can any1 help

|
ropez (312)
It's probably not something wrong with the way you included the file, but an error inside the header file. The compiler starts the error message with "In file included from.." just to tell you the context where the file was included (what you called linked).

You'll need to include the rest of the error message, and the code from the header file that's really causing the error if you want more help.
|

This topic is archived - New replies not allowed.
Home page | Privacy policy
© cplusplus.com, 2000-2008 - All rights reserved - v2.2
Spotted an error? contact us