DTwainAppInfo::GetManufacturer

Top  Previous  Next

Syntax

std::string GetManufacturer( ) const;

 

Return Value

Returns the TWAIN manufacturer setting in the DTwainAppInfo object.  Note that the return value is a standard C++ std::string.

 

Example:

#include <string>

#include <iostream>

//...

DTWAIN::DTwainAppInfo AppInfo;

//...

std::string sInfo = AppInfo.GetManufacturer( );

std::cout << "The manufacturer is " << sInfo;