[OpenSimExtras] Added callback setters to for the new chat ranges

Though they're not in use yet.. they should be in use soon, either way should exist.
This commit is contained in:
Inusaito Sayori
2013-10-05 03:39:59 -04:00
parent de1a459bcb
commit 16a8b92d84
2 changed files with 17 additions and 0 deletions

View File

@@ -94,3 +94,17 @@ boost::signals2::connection LFSimFeatureHandler::setSearchURLCallback(const boos
return mSearchURL.connect(slot);
}
boost::signals2::connection LFSimFeatureHandler::setSayRangeCallback(const boost::signals2::signal<void()>::slot_type& slot)
{
return mSayRange.connect(slot);
}
boost::signals2::connection LFSimFeatureHandler::setShoutRangeCallback(const boost::signals2::signal<void()>::slot_type& slot)
{
return mShoutRange.connect(slot);
}
boost::signals2::connection LFSimFeatureHandler::setWhisperRangeCallback(const boost::signals2::signal<void()>::slot_type& slot)
{
return mWhisperRange.connect(slot);
}