NDEVR
API Documentation
DelimiterIterator.h
1#pragma once
2namespace NDEVR
3{
8 class DelimiterIterator
9 {
14 DelimiterIterator(const char* text)
15 : m_location(text)
16 {}
22 const char* findNext(char delimiter)
23 {
24 while (*m_location != delimiter && *m_location != '\0')
25 m_location++;
26 return m_location;
27 }
28 private:
29 const char* m_location;
30 };
31}
The primary namespace for the NDEVR SDK.