// AppStates.cpp: implementation of the CAppStates class.
//
//////////////////////////////////////////////////////////////////////

#include "stdafx.h"
#include "6046DryEnd.h"
#include "AppStates.h"

#ifdef _DEBUG
#undef THIS_FILE
static char THIS_FILE[]=__FILE__;
#define new DEBUG_NEW
#endif

//////////////////////////////////////////////////////////////////////
// Construction/Destruction
//////////////////////////////////////////////////////////////////////

CAppStates::CAppStates()
{

}

CAppStates::~CAppStates()
{

}

void/*later return struct*/ CAppStates::GetState(/*add an enum for button*/)
{
 //here, switch on the button and call appropriate fxn to fill a struct
 //then return that struct to the QV manager

}
