Move pen_type.h to raster directory.

This commit is contained in:
David Capello 2011-01-21 17:16:21 -03:00
parent 45855b88d3
commit e6c2fdd6ed
3 changed files with 4 additions and 4 deletions

View File

@ -19,7 +19,7 @@
#ifndef RASTER_PEN_H_INCLUDED
#define RASTER_PEN_H_INCLUDED
#include "pen_type.h"
#include "raster/pen_type.h"
#include <vector>
class Image;

View File

@ -16,8 +16,8 @@
* Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA
*/
#ifndef PEN_TYPE_H_INCLUDED
#define PEN_TYPE_H_INCLUDED
#ifndef RASTER_PEN_TYPE_H_INCLUDED
#define RASTER_PEN_TYPE_H_INCLUDED
enum PenType {
PEN_TYPE_CIRCLE = 0,

View File

@ -22,7 +22,7 @@
#include "gfx/rect.h"
#include "app/color.h"
#include "tiled_mode.h"
#include "pen_type.h"
#include "raster/pen_type.h"
class IToolSettings;
class IPenSettings;