#pragma once
class Test
{
public:
virtual void baaah(void) = 0;
};
right click on baaah go Create Implementation
in cpp we get:
#include "StdAfx.h"
#include "Test.h"
#ifdef _DEBUG
#define new DEBUG_NEW
#undef THIS_FILE
static char THIS_FILE[] = __FILE__;
#endif
void
Test::baaah(void)/*= 0
{
}
using vc6