Sunday, March 01, 2009

Interfaces

namespace myspace
{
interface ifoo
{
public void bar();
}

class Iamfoo : public ifoo //this would fail because its not c++
{
public void bar()
{
}
};
}

Comments: Post a Comment

<< Home

This page is powered by Blogger. Isn't yours?