mirror of
https://github.com/UpsilonNumworks/Upsilon.git
synced 2026-01-18 16:27:34 +01:00
16 lines
293 B
C++
16 lines
293 B
C++
#ifndef APPS_XNT_LOOP
|
|
#define APPS_XNT_LOOP
|
|
|
|
#include <ion/unicode/code_point.h>
|
|
|
|
class XNTLoop {
|
|
public:
|
|
XNTLoop(): m_loopIndex(-1) {}
|
|
void reset() { m_loopIndex = -1; }
|
|
CodePoint XNT(CodePoint defaultCodePoint, bool * shouldRemoveLastCharacter);
|
|
private:
|
|
int m_loopIndex;
|
|
};
|
|
|
|
#endif
|