16 lines
199 B
C++
16 lines
199 B
C++
#ifndef CHANGEUNIT_H
|
|
#define CHANGEUNIT_H
|
|
|
|
#include <stdlib.h>
|
|
|
|
class ChangeUnit
|
|
{
|
|
public:
|
|
size_t change_buffer_offset;
|
|
size_t length;
|
|
size_t buffer_position;
|
|
bool insert;
|
|
};
|
|
|
|
#endif
|