Tilted Forum Project Discussion Community  

Go Back   Tilted Forum Project Discussion Community > Interests > Tilted Technology


 
 
LinkBack Thread Tools
Old 09-04-2004, 04:25 PM   #1 (permalink)
Junkie
 
C++ compile problem

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.
Rekna is offline  
Old 09-04-2004, 04:50 PM   #2 (permalink)
I am Winter Born
 
Pragma's Avatar
 
Location: Alexandria, VA
You probably have to specify the namespace for the class.

Such as foo::ClassA c;

If you give more specifics, that may help, though.
Pragma is offline  
Old 09-04-2004, 06:09 PM   #3 (permalink)
Junkie
 
Actually I don't think that would work, the writers of the library did something very strange. (The library is GLUI for openGL) They have a very large hiarchy of classes and instead of including the class headers in related files they would declare an empty class with the same name as the one in other files and then just make a pointer to that class in the higher classes. I probably didn't explain it very well, but it doesn't matter anyway because the member functions didn't behave the way I wanted. So now I just took a few of the files from the librarys source and customized them and included them locally.
Rekna is offline  
Old 09-05-2004, 10:44 AM   #4 (permalink)
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  
 

Tags
compile, problem


Posting Rules
You may not post new threads
You may not post replies
You may not post attachments
You may not edit your posts

BB code is On
Smilies are On
[IMG] code is On
HTML code is Off
Trackbacks are On
Pingbacks are On
Refbacks are On



All times are GMT -8. The time now is 06:32 AM.

Tilted Forum Project

Powered by vBulletin® Version 3.8.7
Copyright ©2000 - 2024, vBulletin Solutions, Inc.
Search Engine Optimization by vBSEO 3.6.0 PL2
© 2002-2012 Tilted Forum Project

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 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73