C# Class GPS.ViewModels.OcrViewModelBase

Base class for at least some of the view model classes used in the OcrTestClient project. Since view models commonly need access to OcrData and OcrConversionStateManager instances we collected that commonality here.
Inheritance: GPS.Utils.ModelBase
Exibir arquivo Open project: ProjPossibility/CSUN-MobileMapMagnifier

Public Methods

Method Description
OcrViewModelBase ( OcrData ocrData, OcrConversionStateManager ocrConversionStateManager ) : System

Initializes a new instance of the OcrViewModelBase class.

Method Details

OcrViewModelBase() public method

Initializes a new instance of the OcrViewModelBase class.
public OcrViewModelBase ( OcrData ocrData, OcrConversionStateManager ocrConversionStateManager ) : System
ocrData GPS.Data.OcrData /// A reference to the OcrData instance that stores the /// photo stream and the text obtained after the OCR conversion. ///
ocrConversionStateManager GPS.Data.OcrConversionStateManager /// A reference to the OcrConversionStateManager instance that stores the /// status of the last OCR conversion. ///
return System