Add support for Avination's "Upload Credits"
This commit is contained in:
@@ -58,7 +58,8 @@ HippoGridInfo::HippoGridInfo(const std::string& gridName) :
|
||||
mMaxAgentGroups(-1),
|
||||
mCurrencySymbol("OS$"),
|
||||
mRealCurrencySymbol("US$"),
|
||||
mDirectoryFee(30)
|
||||
mDirectoryFee(30),
|
||||
mUPCSupported(false)
|
||||
{
|
||||
}
|
||||
|
||||
@@ -676,6 +677,19 @@ void HippoGridInfo::setAutoUpdate(bool b)
|
||||
mAutoUpdate = b;
|
||||
}
|
||||
|
||||
bool HippoGridInfo::getUPCSupported()
|
||||
{
|
||||
if(isSecondLife())
|
||||
return false;
|
||||
else
|
||||
return mUPCSupported;
|
||||
}
|
||||
|
||||
void HippoGridInfo::setUPCSupported(bool b)
|
||||
{
|
||||
mUPCSupported = b;
|
||||
}
|
||||
|
||||
// ********************************************************************
|
||||
// ********************************************************************
|
||||
// HippoGridManager
|
||||
|
||||
Reference in New Issue
Block a user