00001 /********************************************************************** 00002 *< 00003 FILE: impexpintf.h 00004 00005 DESCRIPTION: Import/Export Interface (namespace) 00006 00007 CREATED BY: Pete Samson 00008 00009 HISTORY: created 7 January 2002 00010 00011 *> Copyright (c) 2002, All Rights Reserved. 00012 **********************************************************************/ 00013 #pragma once 00014 00015 #include <WTypes.h> 00016 #include "utilexp.h" 00017 00018 namespace ImportExportInterface 00019 { 00022 UtilExport void SetCanConvertUnits(bool ifSo); 00024 UtilExport bool GetCanConvertUnits(); 00026 UtilExport int AskUserConvertUnits(HWND hWnd, bool isExport); 00030 UtilExport bool GetShouldConvertUnits(); 00031 }; 00032 00033