Interface stuff does not compile
- From: "solved by design" <zephryn.xirdal@xxxxxxxxxxxxxxxxx>
- Date: Tue, 25 Apr 2006 21:58:26 +0200
Hi all!
I have this clases:
interface class i1
{
void m(void);
void m2(void);
};
interface class i2
{
//void m(void);
void m3(void);
};
ref class pepe:public i1,public i2
{
virtual void m(void){;}
virtual void m2(void){;}
virtual void m3(void){;}
};
Visual Studio says me that I've to implement each virtual method for all
interfaces into my pepe class, but that is the thing that I'm doing.
Can someone tell me where's my error? Working with C++/CLI, of course.
Thanks in advance.
--
Si de pronto se descompusieran todos los televisores del mundo, no habría
escalas para medir los maremotos de aburrimiento.
-- Manuel Campo Vidal. (1951-) Periodista español.
.
- Follow-Ups:
- Re: Interface stuff does not compile
- From: Marcus Heege
- Re: Interface stuff does not compile
- From: Tamas Demjen
- Re: Interface stuff does not compile
- From: Bruno van Dooren
- Re: Interface stuff does not compile
- Prev by Date: Re: Implementing assign operator ( = )
- Next by Date: Re: Interface stuff does not compile
- Previous by thread: Implementing assign operator ( = )
- Next by thread: Re: Interface stuff does not compile
- Index(es):
Relevant Pages
|