Forum: C++ Feb 18th, 2009 |
| Replies: 2 Views: 873 Well, at first blush (I haven't tested it) you may need to specify
getline<wchar_t>( File, Line );
Hope it helps,
Sean |
Forum: C++ Nov 19th, 2008 |
| Replies: 5 Views: 604 This is not really a standardized thing, in my knowledge. For many reasons, it is usually a pretty involved platform specific thing, as terminating aother program is considered unsafe. There are... |
Forum: C++ Oct 29th, 2008 |
| Replies: 21 Views: 1,524 function bodies (definitions) should reside in a .cpp file, not a header file; the functions are being defined multiple times the way they are written (every file you include the header file in).
... |
Forum: C++ Oct 28th, 2008 |
| Replies: 8 Views: 626 I can't see precisely the problem because I don't have enough code, really...but you should have a member in the class:
string mPartDescription;
and this member string should be the one that is... |
Forum: C++ Oct 27th, 2008 |
| Replies: 9 Views: 685 Yes, it is a good book but not targeted at beginners. A book that I always keep on my shelf is "the C/C++ Programmer's Bible"...not sure what edition is out write now. It is huge, but breaks... |
Forum: C++ Oct 22nd, 2008 |
| Replies: 4 Views: 401 The function definition is not being included in your test.cpp module, so the linker can't find it. Often inline function definitions are saved as a different type of file (like test.inl) which is... |