Fixed build.

git-svn-id: file:///srv/svn/repos/haiku/haiku/trunk@20482 a95241bf-73f2-0310-859d-f6bbb57e9c96
This commit is contained in:
Ingo Weinhold 2007-03-31 20:27:39 +00:00
parent 84db3be8a9
commit 08e7fb4054
6 changed files with 40 additions and 6 deletions

View File

@ -43,7 +43,13 @@
class Icon;
class SVGImporter;
class Transformable;
namespace BPrivate {
namespace Icon {
class Transformable;
}
}
using BPrivate::Icon::Transformable;
namespace agg {
namespace svg {

View File

@ -16,7 +16,13 @@
class Gradient;
class Shape;
class Style;
class Transformable;
namespace BPrivate {
namespace Icon {
class Transformable;
}
}
using BPrivate::Icon::Transformable;
class SVGExporter : public Exporter {
public:

View File

@ -12,7 +12,13 @@
#include "Command.h"
class Shape;
class Transformable;
namespace BPrivate {
namespace Icon {
class Transformable;
}
}
using BPrivate::Icon::Transformable;
class FreezeTransformationCommand : public Command {
public:

View File

@ -12,10 +12,16 @@
#include "TransformBox.h"
#include "TransformCommand.h"
class Transformable;
class VectorPath;
struct control_point;
namespace BPrivate {
namespace Icon {
class Transformable;
}
}
using BPrivate::Icon::Transformable;
class TransformPointsCommand : public TransformCommand,
public TransformBoxListener {
public:

View File

@ -11,7 +11,12 @@
#include "Command.h"
class Transformable;
namespace BPrivate {
namespace Icon {
class Transformable;
}
}
using BPrivate::Icon::Transformable;
class ResetTransformationCommand : public Command {
public:

View File

@ -12,7 +12,12 @@
#include "TransformBox.h"
#include "TransformCommand.h"
class Transformable;
namespace BPrivate {
namespace Icon {
class Transformable;
}
}
using BPrivate::Icon::Transformable;
class TransformObjectsCommand : public TransformCommand,
public TransformBoxListener {