---
title: "QuartzUIMigrateCommandlet: declaration reference"
description: "Quartz UI 0.57.0-dev: QuartzUIMigrateCommandlet: declaration reference. Source-reviewed guidance, usage and limitations."
status: approved
visibility: public
sourceRevision: fe5b709ec900e282b50e58b819a25041945005f9
reviewedAt: 2026-09-24
---

# QuartzUIMigrateCommandlet: declaration reference

> **0.57.0-dev · beta source documentation.** Native, Blueprint, Editor and rendering examples are source-reviewed, not executed in Unreal during this scan. See [validation and limits](https://betterbuilt.games/docs/quartz-ui/evidence).

Pinned source (source: `Source/QuartzUIEditor/Public/QuartzUIMigrateCommandlet.h`) · [integration recipe](https://betterbuilt.games/docs/quartz-ui/inventory#quartzuimigratecommandlet) · [practical guide](https://betterbuilt.games/docs/quartz-ui/tools-shipping)

## UQuartzUIMigrateCommandlet

**Editor type.** Non-interactive equivalent of the Editor reference-app migration action.

**Prerequisites / integration:** Installed source plugin; Editor tools additionally require a compiled compatible host Editor target. Use the [QuartzUIMigrateCommandlet recipe](https://betterbuilt.games/docs/quartz-ui/inventory#quartzuimigratecommandlet) in the host module `QuartzUIEditor`.

**Minimal example / lifecycle:** UnrealEditor-Cmd Host.uproject -run=QuartzUIMigrate -LegacyFixture -DryRun. Commandlet delegates to shared migration service.

**Avoid:** Passing source without canonical build metadata. Match the exact declaration below; dependent DTOs/enums are values used by this owner, not independent systems.

Exact source line (source: `Source/QuartzUIEditor/Public/QuartzUIMigrateCommandlet.h#L9`)

## Complete header

Source snapshot, not an additional example. Unreal annotations distinguish exposed Blueprint nodes from native-only/private methods.

```cpp
#pragma once

#include "Commandlets/Commandlet.h"

#include "QuartzUIMigrateCommandlet.generated.h"

/** Non-interactive equivalent of the Editor reference-app migration action. */
UCLASS()
class QUARTZUIEDITOR_API UQuartzUIMigrateCommandlet final : public UCommandlet
{
	GENERATED_BODY()

public:
	UQuartzUIMigrateCommandlet();
	virtual int32 Main(const FString& Params) override;
};
```

Canonical HTML: https://betterbuilt.games/docs/quartz-ui/reference-quartzuimigratecommandlet
