View Single Post
Old 09-05-2004, 10:44 AM   #4 (permalink)
bacon
Upright
 
No header? Odd...

Quote:
Originally Posted by Rekna
I'm trying to compile my program but I have a problem and am wondering if anyone knows a way around it.

I'm using a class that is found inside a percompiled library. I'm linking to the library but the compiler doesn't recognize the class name and member functions. Is there a way to tell the compiler that this class will be difined via linking? (there is no header for this class)

I can give you more info if you need it.
Its very odd that there is no header... If your compile is failing because of lack of prototypes, then specifing a -lnameoflib isn't going to do any good, since you aren't ever going to make it to the link stage.
bacon is offline  
 

1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54