Tilted Forum Project Discussion Community

Tilted Forum Project Discussion Community (https://thetfp.com/tfp/)
-   Tilted Technology (https://thetfp.com/tfp/tilted-technology/)
-   -   C++ compile problem (https://thetfp.com/tfp/tilted-technology/67947-c-compile-problem.html)

Rekna 09-04-2004 04:25 PM

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.

Pragma 09-04-2004 04:50 PM

You probably have to specify the namespace for the class.

Such as foo::ClassA c;

If you give more specifics, that may help, though.

Rekna 09-04-2004 06:09 PM

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.

bacon 09-05-2004 10:44 AM

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.


All times are GMT -8. The time now is 06:41 PM.

Powered by vBulletin® Version 3.8.7
Copyright ©2000 - 2025, 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