// Base for synchronously called dialogs, using unique_ptr template <class Base, class Dialog> using AbstractDialogImpl_Sync = AbstractDialogImpl_BASE<Base, Dialog, std::unique_ptr, false>;
// Base for synchronously called dialogs, using shared_ptr template <class Base, class Dialog> using AbstractDialogImpl_Sync_Shared
= AbstractDialogImpl_BASE<Base, Dialog, std::shared_ptr, false>;
// Base for asynchronously called dialogs template <class Base, class Dialog> using AbstractDialogImpl_Async = AbstractDialogImpl_BASE<Base, Dialog, std::shared_ptr, true>;
}
Die Informationen auf dieser Webseite wurden
nach bestem Wissen sorgfältig zusammengestellt. Es wird jedoch weder Vollständigkeit, noch Richtigkeit,
noch Qualität der bereit gestellten Informationen zugesichert.
Bemerkung:
Die farbliche Syntaxdarstellung und die Messung sind noch experimentell.