Class implements source reader. It reads characters from source and transform them into lower case.
You can find more information in comments below. Overrided methods can be found in corresponding base class or interface.
class CReaderLowerCase :public virtual IReader, public CReleasable
{
public:
// IReader methods
wchar_t Read(const size_t index) override;
String Read(const size_t index, const size_t length) override;
CReaderLowerCase(const String &source);
CReaderLowerCase(const String &source, const size_t min, const size_t max);
};
Namespace: | nitisa::script |
Include: | Nitisa/Modules/Script/Readers/ReaderLowerCase.h |