1 // Aseprite
2 // Copyright (C) 2001-2015  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_LAYER_FROM_BACKGROUND_H_INCLUDED
8 #define APP_CMD_LAYER_FROM_BACKGROUND_H_INCLUDED
9 #pragma once
10 
11 #include "app/cmd_sequence.h"
12 
13 namespace doc {
14   class Layer;
15 }
16 
17 namespace app {
18 namespace cmd {
19   using namespace doc;
20 
21   class LayerFromBackground : public CmdSequence {
22   public:
23     LayerFromBackground(Layer* layer);
24   };
25 
26 } // namespace cmd
27 } // namespace app
28 
29 #endif
30