Make UEFI boot-platform build again
[haiku.git] / headers / os / interface / GradientDiamond.h
blob37c4b0316428c8cb77af4065f9a7a560cbc56efe
1 /*
2 * Copyright 2006-2009, Haiku, Inc. All rights reserved.
3 * Distributed under the terms of the MIT License.
4 */
5 #ifndef _GRADIENT_DIAMOND_H
6 #define _GRADIENT_DIAMOND_H
9 #include <Gradient.h>
12 class BPoint;
15 // WARNING! This is experimental API and may change! Be prepared to
16 // recompile your software in a next version of haiku.
19 class BGradientDiamond : public BGradient {
20 public:
21 BGradientDiamond();
22 BGradientDiamond(const BPoint& center);
23 BGradientDiamond(float cx, float cy);
25 BPoint Center() const;
26 void SetCenter(const BPoint& center);
27 void SetCenter(float cx, float cy);
30 #endif // _GRADIENT_DIAMOND_H