This must be platform dependant because on my linux box
with g++ 3.2. I get to link and execute.
John M. Dlugosz. Are you sure of what you say?
Sorry about the off topic.
==toto.h
class A {
int ma;
void printit();
A::A() : ma(666) {}
};
==toto1.cc
#include "iostream"
#define class struct
#include "toto.h"
main() {
A a;
std::cerr << a.ma << "\n";
a.printit();
}
==toto2.cc
#include "iostream"
#include "toto.h"
void
A::printit() {
std::cerr << ma << "\n";
}
===Compilation, link, execution
$ g++ -c toto1.cc -o toto1.o
$ g++ -c toto2.cc -o toto2.o
In file included from toto2.cc:2:
toto.h:1: warning: all member functions in class `A' are private
$ g++ toto*.o -o a.out
$ ./a.out
666
666
$
Posts are HTML formatted. Put <p> </p> tags around your paragraphs. Put <code> </code> tags around your code and data!
Titles consisting of a single word are discouraged, and in most cases are disallowed outright.
Read Where should I post X? if you're not absolutely sure you're posting in the right place.
Please read these before you post! —
Posts may use any of the Perl Monks Approved HTML tags:
- a, abbr, b, big, blockquote, br, caption, center, col, colgroup, dd, del, details, div, dl, dt, em, font, h1, h2, h3, h4, h5, h6, hr, i, ins, li, ol, p, pre, readmore, small, span, spoiler, strike, strong, sub, summary, sup, table, tbody, td, tfoot, th, thead, tr, tt, u, ul, wbr
You may need to use entities for some characters, as follows. (Exception: Within code tags, you can put the characters literally.)
|
For: |
|
Use: |
| & | | & |
| < | | < |
| > | | > |
| [ | | [ |
| ] | | ] |
Link using PerlMonks shortcuts! What shortcuts can I use for linking?
See Writeup Formatting Tips and other pages linked from there for more info.