* moved storage related classes to data/storage folder * implemented recording c++ unions as NODE_UNION instead of just using NODE_TYPE * added transformation to merge anonymous classes/structs/enums/unions and typedef nodes * added tests for this transformation * added setting for enabling/disabling this transformation
11 lines
224 B
C++
11 lines
224 B
C++
#ifndef SQLITE_STORAGE_MIGRATOR_H
|
|
#define SQLITE_STORAGE_MIGRATOR_H
|
|
|
|
#include "utility/migration/Migrator.h"
|
|
|
|
class SqliteStorage;
|
|
|
|
typedef Migrator<SqliteStorage> SqliteStorageMigrator;
|
|
|
|
#endif // SQLITE_STORAGE_MIGRATOR_H
|