MCPcopy Create free account
hub / github.com/TankOs/SFGUI / AddCharacterSet

Method AddCharacterSet

src/SFGUI/Engine.cpp:311–317  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

309}
310
311void Engine::AddCharacterSet( std::uint32_t low_bound, std::uint32_t high_bound ) {
312 if( high_bound <= low_bound ) {
313 return;
314 }
315
316 m_character_sets.emplace_back( std::make_pair( low_bound, high_bound ) );
317}
318
319bool Engine::SetProperty( sfg::Selector::Ptr selector, const std::string& property, const std::string& value ) {
320 if( !selector ) {

Callers

nothing calls this directly

Calls

no outgoing calls

Tested by

no test coverage detected