Garmin Fleet Management Controller  2.19.0
CFileConverterDlg.cpp File Reference
#include "stdafx.h"
#include "Shlwapi.h"
#include <fstream>
#include <sstream>
#include <string>
#include <vector>
#include "CFileConverterDlg.h"
#include "util.h"

Go to the source code of this file.

Enumerations

enum  conversion_type_type {
  CONV_PSR_TO_CSV = 0,
  CONV_CSV_TO_PSR,
  CONV_GPX_TO_PSR
}
 Valid values for file conversion types. More...
 

Variables

static CFileConverterDlg::conversion_type conversion_types []
 Conversion types that the client accepts. More...
 

Enumeration Type Documentation

Valid values for file conversion types.

Enumerator
CONV_PSR_TO_CSV 
CONV_CSV_TO_PSR 
CONV_GPX_TO_PSR 

Definition at line 40 of file CFileConverterDlg.cpp.

Variable Documentation

CFileConverterDlg::conversion_type conversion_types[]
static
Initial value:
=
{
{ CONV_PSR_TO_CSV, _T( "PSR to CSV" ), NULL, _T(".csv"), _T( "PSR Files (*.*)|*.*|" ) },
{ CONV_CSV_TO_PSR, _T( "CSV to PSR" ), NULL, _T(".psr"), _T( "CSV Files (*.csv)|*.csv|" ) },
{ CONV_GPX_TO_PSR, _T( "GPX to PSR" ), NULL, _T(".psr"), _T( "GPX Files (*.gpx)|*.gpx|" ) }
}

Conversion types that the client accepts.

Definition at line 52 of file CFileConverterDlg.cpp.