home *** CD-ROM | disk | FTP | other *** search
- Newsgroups: comp.unix.aix
- Path: sparky!uunet!peora!tarpit!bilver!vicstoy!dchen
- From: dchen@vicstoy.UUCP (Daixiang Chen)
- Subject: Shared Library for C++ Classes, How?
- Message-ID: <1993Jan21.000149.25746@vicstoy.UUCP>
- Organization: vicstoy: Public Access Unix, Orlando, FL
- Distribution: usa
- Date: Thu, 21 Jan 1993 00:01:49 GMT
- Lines: 24
-
- Specifically for the following C++ code
-
- =========== try.C ===
-
- class example {
- public:
- print();
- };
-
- example::print()
- {
- printf("Do nothing\n");
- }
-
- How to make the try.o a shared library? If the export file is need
- (as needed for C functions) how to say
- "export class example or export class::print" in export file format?
-
- We use XL C++ 1.0, run AIX 3.2.2, I don't have the C++ compiler's user guide.
- Any suggestions or ideas are welcome
-
-
-
- D. Chen
-