> class c1 { > public: > void methode1 (long); > }; > > class c2: public c1 { > public: > void methode2 (void); > }; > > void c2::methode2 (void) { > methode1 (1); > } > > In function 'c2::methode2(void)': > undefined reference to 'c1::methode1(long)' You haven't defined methode1! Bob T. _______________________________________________ Redhat-devel-list mailing list [EMAIL PROTECTED] https://listman.redhat.com/mailman/listinfo/redhat-devel-list
- class inheritance InfraNewsrdr
- Bob Tennent