// datataker.cpp : Defines the entry point for the console application.
//

#include "stdafx.h"

class DataTakerApp : public CWinApp
{
public:
	DataTakerApp();
	virtual BOOL InitInstance();

protected:
//	DECLARE_MESSAGE_MAP()
};

// The one and only application object
DataTakerApp theApp;

//BEGIN_MESSAGE_MAP(DataTakerApp, CWinApp)
//	//{{AFX_MSG_MAP(DataTakerApp)
//	//}}AFX_MSG
//END_MESSAGE_MAP()

DataTakerApp::DataTakerApp()
{
}

BOOL DataTakerApp::InitInstance()
{

  CExecImageVersion MyVersion;
  CIniFile MyINI("datataker.ini");


  //Settings will be stored in the registry
  CString mijntest = MyVersion.GetLegalTrademarks();
  //SetRegistryKey( (LPCTSTR)MyVersion.GetLegalTrademarks());

  return true;
}


int _tmain(int argc, _TCHAR* argv[])
{
	return 0;
}

