Пример #1
0
ConstStrBlobPtr StrBlob::end() const // should add const
{
    return ConstStrBlobPtr(*this, data->size());
}
Пример #2
0
ConstStrBlobPtr StrBlob::begin() const // should add const
{
    return ConstStrBlobPtr(*this);
}
Пример #3
0
inline ConstStrBlobPtr StrBlob::begin( ) {
    return ConstStrBlobPtr(*this);
}
Пример #4
0
inline ConstStrBlobPtr StrBlob::end( ) {
    ConstStrBlobPtr ret = ConstStrBlobPtr(*this, data->size( ));
    return ret;
}
Пример #5
0
ConstStrBlobPtr StrBlob::cend() const
{
    return ConstStrBlobPtr(*this, data->size());
}
Пример #6
0
ConstStrBlobPtr StrBlob::cbegin() const
{
    return ConstStrBlobPtr(*this);
}