WRAPPER_API const std::vector<wstring> GetExcludeList() const
An interface for retrieving a list of strings from the DatumShiftPicker (via DatumShiftPreferencesEx), the DataSourceEditor, or the DataSourcePicker. This strings will be a list of GC codes to exclude, in determining what objects to display/return.
void DataSourceEditor_GetExcludeList Method(GeoCalcPBW::DataSourceEditor & editor, HWND newParent)
{
const std::vector<wstring> * list = editor.GetExcludeList();
editor.SetTitleBarCaption(L"DataSourceEditor Dialog");
editor.SetParent(newParent);
editor.Show();
}