1// Aseprite
2// Copyright (C) 2016 David Capello
3//
4// This program is distributed under the terms of
5// the End-User License Agreement for Aseprite.
6
7#ifndef APP_CMD_TRIM_CEL_H_INCLUDED
8#define APP_CMD_TRIM_CEL_H_INCLUDED
9#pragma once
10
11#include "app/cmd_sequence.h"
12
13namespace doc {
14 class Cel;
15}
16
17namespace app {
18namespace cmd {
19
20 class TrimCel : public CmdSequence {
21 public:
22 TrimCel(doc::Cel* cel);
23 };
24
25} // namespace cmd
26} // namespace app
27
28#endif
29