// AppStates.h: interface for the CAppStates class.
//
//////////////////////////////////////////////////////////////////////
//	This class holds information about the current satus of the survey,
//  including alerts for sensors, data RX summary, general setup states
//  and anything else that will be displayed in the Quick View Display.
//	The quick View Manager will ask this class for data on a particular
//  category, like General Settings, this class will then return a struct 
//  which contains all the info needed to populate the QV display
//
//
#if !defined(AFX_APPSTATES_H__146AED45_4660_4831_9ED6_05039F655B8D__INCLUDED_)
#define AFX_APPSTATES_H__146AED45_4660_4831_9ED6_05039F655B8D__INCLUDED_

#if _MSC_VER > 1000
#pragma once
#endif // _MSC_VER > 1000

class CAppStates  
{
public:
	void GetState();
	CAppStates();
	virtual ~CAppStates();

	//enum { QV1 = 0, QV2, QV3, QV4 } states; //one per button

};

#endif // !defined(AFX_APPSTATES_H__146AED45_4660_4831_9ED6_05039F655B8D__INCLUDED_)
