CropArea.hpp
author viric <viriketo@gmail.com>
Sun, 24 Apr 2011 20:43:56 +0200
changeset 4 6d09f682bc3e
parent 2 b2772bffb62f
permissions -rw-r--r--
Afegeixo scripts que faig servir per a fer llibres. Aquests són de Duna.

#ifndef _HEADER_CROPAREA_HPP_
#define _HEADER_CROPAREA_HPP_

struct CropArea
{
    CropArea()
        :width(0),
        height(0),
        x(0),
        y(0)
    {
    }
    long int width;
    long int height;
    long int x;
    long int y;
};

#endif /* _HEADER_CROPAREA_HPP_ */