DCL 3.7.4
Loading...
Searching...
No Matches
BytesInputStream.cpp File Reference
#include <string.h>
#include <dcl/BytesInputStream.h>
#include <dcl/size_t.h>

Go to the source code of this file.

Functions

__DCL_BEGIN_NAMESPACE IMPLEMENT_CLASSINFO (BytesInputStream, InputStream) String BytesInputStream

Function Documentation

◆ IMPLEMENT_CLASSINFO()

__DCL_BEGIN_NAMESPACE IMPLEMENT_CLASSINFO ( BytesInputStream ,
InputStream  )

Definition at line 17 of file BytesInputStream.cpp.

20{
21 StringBuilder r = className();
22 r.format(__T("(%ubytes)"), __str.length());
23 return r;
24}
25
26BytesInputStream::BytesInputStream(const ByteString& _str)
27{
28 __str = _str;
29 __begin = _str;
30 __end = __begin + _str.length();
31}
IOException *size_t r
Definition MediaInfo.cpp:82
#define __T(str)
Definition Object.h:60
const char * __begin