CropArea.hpp
author viric <viriketo@gmail.com>
Sun, 24 Apr 2011 14:26:29 +0200
changeset 2 b2772bffb62f
parent 0 7e720dcafcaf
permissions -rw-r--r--
Outputting crop.txt now.

#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_ */