Ejemplo n.º 1
0
ConstStrBlobPtr StrBlob::end() const // should add const
{
    return ConstStrBlobPtr(*this, data->size());
}
Ejemplo n.º 2
0
ConstStrBlobPtr StrBlob::begin() const // should add const
{
    return ConstStrBlobPtr(*this);
}
Ejemplo n.º 3
0
inline ConstStrBlobPtr StrBlob::begin( ) {
    return ConstStrBlobPtr(*this);
}
Ejemplo n.º 4
0
inline ConstStrBlobPtr StrBlob::end( ) {
    ConstStrBlobPtr ret = ConstStrBlobPtr(*this, data->size( ));
    return ret;
}
Ejemplo n.º 5
0
ConstStrBlobPtr StrBlob::cend() const
{
    return ConstStrBlobPtr(*this, data->size());
}
Ejemplo n.º 6
0
ConstStrBlobPtr StrBlob::cbegin() const
{
    return ConstStrBlobPtr(*this);
}