Fetch the repository succeeded.
This action will force synchronization from likecg/kbengine, which will overwrite any changes that you have made since you forked the repository, and can not be recovered!!!
Synchronous operation will process in the background and will refresh the page when finishing processing. Please be patient.
/*
This source file is part of KBEngine
For the latest info, see http://www.kbengine.org/
Copyright (c) 2008-2012 KBEngine.
KBEngine is free software: you can redistribute it and/or modify
it under the terms of the GNU Lesser General Public License as published by
the Free Software Foundation, either version 3 of the License, or
(at your option) any later version.
KBEngine is distributed in the hope that it will be useful,
but WITHOUT ANY WARRANTY; without even the implied warranty of
MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
GNU Lesser General Public License for more details.
You should have received a copy of the GNU Lesser General Public License
along with KBEngine. If not, see <http://www.gnu.org/licenses/>.
*/
namespace KBEngine {
INLINE int8 PropertyDescription::getDetailLevel(void)const
{
return detailLevel_;
}
INLINE bool PropertyDescription::isPersistent(void)const
{
return isPersistent_;
};
INLINE DataType* PropertyDescription::getDataType(void)const
{
return dataType_;
};
INLINE const uint32& PropertyDescription::getFlags(void)const
{
return flags_;
};
INLINE const char* PropertyDescription::getName(void)const
{
return name_.c_str();
};
INLINE const char* PropertyDescription::getDataTypeName(void)const
{
return dataTypeName_.c_str();
}
INLINE const char* PropertyDescription::getDefaultValStr(void)const
{
return defaultValStr_.c_str();
}
INLINE ENTITY_PROPERTY_UID PropertyDescription::getUType(void)const
{
return utype_;
}
INLINE void PropertyDescription::setIdentifier(bool isIdentifier)
{
isIdentifier_ = isIdentifier;
}
INLINE void PropertyDescription::setDatabaseLength(uint32 databaseLength)
{
databaseLength_ = databaseLength;
}
INLINE uint32 PropertyDescription::getDatabaseLength()const
{
return databaseLength_;
}
INLINE int16 PropertyDescription::aliasID()const
{
return aliasID_;
}
INLINE void PropertyDescription::aliasID(int16 v)
{
aliasID_ = v;
}
INLINE bool PropertyDescription::hasCell(void)const
{
return (flags_ & ENTITY_CELL_DATA_FLAGS) > 0;
}
INLINE bool PropertyDescription::hasBase(void)const
{
return (flags_ & ENTITY_BASE_DATA_FLAGS) > 0;
}
INLINE bool PropertyDescription::hasClient(void)const
{
return (flags_ & ENTITY_CLIENT_DATA_FLAGS) > 0;
}
}
此处可能存在不合适展示的内容,页面不予展示。您可通过相关编辑功能自查并修改。
如您确认内容无涉及 不当用语 / 纯广告导流 / 暴力 / 低俗色情 / 侵权 / 盗版 / 虚假 / 无价值内容或违法国家有关法律法规的内容,可点击提交进行申诉,我们将尽快为您处理。