Provide default constructors for UIA operation abstraction types (where it makes sense) #50
Labels
enhancement
New feature or request
good first issue
Good for newcomers
UiaOperationAbstraction
Issues that are related to the UiaOperationAbstraction C++ static library
To simplify code built with the UIA operation abstraction library, we should consider simplifying construction of the types provided by the library.
Specifically, types whose default values are implied or types that in other languages are often default-constructible could be good candidates, such as
UiaString
that right now has to be constructed asUiaString{ L"" }
while the C++ equivalent ofstd::wstring
can be constructed without providing arguments.The text was updated successfully, but these errors were encountered: