jes/src-c/core/CharacterWidthDeterminer.h
2018-07-25 20:47:02 -04:00

13 lines
196 B
C++

#ifndef CHARACTERWIDTHDETERMINER_H
#define CHARACTERWIDTHDETERMINER_H
#include <stdint.h>
class CharacterWidthDeterminer
{
public:
virtual int operator()(uint32_t character) = 0;
};
#endif