File indexing completed on 2024-06-16 04:16:52

0001 /*
0002  *  SPDX-FileCopyrightText: 2016 Laszlo Fazekas <mneko@freemail.hu>
0003  *
0004  *  SPDX-License-Identifier: GPL-2.0-or-later
0005  */
0006 
0007 #ifndef CSV_LAYER_RECORD_H_
0008 #define CSV_LAYER_RECORD_H_
0009 
0010 #include <QString>
0011 
0012 #include "kis_raster_keyframe_channel.h"
0013 
0014 class CSVLayerRecord
0015 {
0016 public:
0017     CSVLayerRecord();
0018     virtual ~CSVLayerRecord();
0019 
0020     QString     name;
0021     QString     blending;
0022     float       density {0.0};
0023     int         visible {0};
0024 
0025     KisLayer*   layer {0};
0026     KisRasterKeyframeChannel *channel {0};
0027     QString     last;
0028     QString     path;
0029     int         frame {0};
0030 };
0031 
0032 #endif