Пример #1
0
	N_CLASS(NistCom) * GetNistCom() const
	{
		HNistCom hValue;
		NCheck(WsqInfoGetNistCom(GetHandle(), &hValue));
		try
		{
			return FromHandle<N_CLASS(NistCom)>(hValue, true, true);
		}
		catch (...)
		{
			Unref(hValue);
			throw;
		}
	}
Пример #2
0
	NistCom GetNistCom() const
	{
		HNistCom hValue;
		NCheck(WsqInfoGetNistCom(GetHandle(), &hValue));
		return FromHandle<NistCom>(hValue, true);
	}