13 lines
196 B
C++
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
|