Audacity 3.2.0
Classes | Functions | Variables
win/SchemeRegistrar.cpp File Reference
#include <string_view>
#include <functional>
#include <windows.h>
#include <wx/log.h>
#include <exception>
#include "CodeConversions.h"
Include dependency graph for win/SchemeRegistrar.cpp:

Go to the source code of this file.

Classes

class  RegistryKey
 

Functions

void SetSchemaRegistrar (std::function< bool(std::string_view)> registrar)
 

Variables

auto registrar
 

Function Documentation

◆ SetSchemaRegistrar()

void SetSchemaRegistrar ( std::function< bool(std::string_view)>  registrar)

Audacity: A Digital Audio Editor

SchemeRegistrar.cpp

Dmitry Vedenko

Definition at line 25 of file URLSchemesRegistry.cpp.

26{
27 // Only a single registrar is allowed.
28 assert(!SchemeRegistrar);
29
30 SchemeRegistrar = std::move(registrar);
31}
auto registrar
std::function< bool(std::string_view)> SchemeRegistrar

Variable Documentation

◆ registrar

auto registrar

Definition at line 104 of file win/SchemeRegistrar.cpp.