mirror of
https://github.com/ONLYOFFICE/core.git
synced 2026-07-20 03:55:47 +08:00
20 lines
261 B
C++
20 lines
261 B
C++
#pragma once
|
|
|
|
namespace AUX
|
|
{;
|
|
|
|
class BetterVariantT : public _variant_t
|
|
{
|
|
public:
|
|
BetterVariantT(const _variant_t& varSrc) ;
|
|
operator double() const ; // Extracts a double from a VT_R8
|
|
|
|
};
|
|
|
|
|
|
|
|
} // namespace AUX
|
|
|
|
|
|
|