// BaseClient.h : main header file for the PROJECT_NAME application

#if !defined(AFX_BASECLIENT_H__F3991BB5_2F19_4B60_ADFD_DB4ED1338926__INCLUDED_)
#define AFX_BASECLIENT_H__F3991BB5_2F19_4B60_ADFD_DB4ED1338926__INCLUDED_

#if _MSC_VER > 1000
#pragma once
#endif // _MSC_VER > 1000

#ifndef __AFXWIN_H__
	#error include 'stdafx.h' before including this file for PCH
#endif

#include "resource.h"		// main symbol

/////////////////////////////////////////////////////////////////////////////
// CBaseClientApp:
//

class CBaseClientApp : public CWinApp
{
public:
	CBaseClientApp();

// Overrides
	//{{AFX_VIRTUAL(CBaseClientApp)
	public:
	virtual BOOL InitInstance();
	//}}AFX_VIRTUAL

// Implementation

	//{{AFX_MSG(CBaseClientApp)
	//}}AFX_MSG
	DECLARE_MESSAGE_MAP()
public:
	CString		m_sAiboIP;
};

extern CBaseClientApp theApp;

/////////////////////////////////////////////////////////////////////////////

//{{AFX_INSERT_LOCATION}}

#endif // !defined(AFX_BASECLIENT_H__F3991BB5_2F19_4B60_ADFD_DB4ED1338926__INCLUDED_)
