Remove C+ Change modules

This commit is contained in:
Josh Holtrop 2021-04-03 10:22:51 -04:00
parent 997cf5efe0
commit 51b1b34d03
2 changed files with 0 additions and 31 deletions

View File

@ -1,16 +0,0 @@
#ifndef CHANGEOPERATION_H
#define CHANGEOPERATION_H
#include "ChangeUnit.h"
#include <list>
#include <stdlib.h>
class ChangeOperation
{
public:
size_t parent;
std::list<ChangeUnit> changes;
std::list<size_t> children;
};
#endif

View File

@ -1,15 +0,0 @@
#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