Subversion Repositories spk

Rev

Blame | Last modification | View Log | RSS feed

#include "../StdAfx.h"
#include "WizardCore1.h"
#include "CreationWizard.h"

namespace Creator {
        void WizardCore1::EnableDone(bool e, int type)
        {
                cli::safe_cast<CreationWizard ^>(m_pParent)->EnableNext(e);

                if ( e && type != -1 )
                        cli::safe_cast<CreationWizard ^>(m_pParent)->CreatePackageType(type);
        }

        void WizardCore1::EnableBack()
        {
                cli::safe_cast<CreationWizard ^>(m_pParent)->EnableBack(true);
        }
};