Subversion Repositories spk

Rev

Details | Last modification | View Log | RSS feed

Rev Author Line No. Line
1 cycrow 1
#include "../StdAfx.h"
2
#include "WizardCore1.h"
3
#include "CreationWizard.h"
4
 
5
namespace Creator {
6
	void WizardCore1::EnableDone(bool e, int type)
7
	{
8
		cli::safe_cast<CreationWizard ^>(m_pParent)->EnableNext(e);
9
 
10
		if ( e && type != -1 )
11
			cli::safe_cast<CreationWizard ^>(m_pParent)->CreatePackageType(type);
12
	}
13
 
14
	void WizardCore1::EnableBack()
15
	{
16
		cli::safe_cast<CreationWizard ^>(m_pParent)->EnableBack(true);
17
	}
18
};