haiku/headers/os/interface/GradientDiamond.h
Stephan Aßmus c8d611a2c0 Prepend header guard with underscore.
git-svn-id: file:///srv/svn/repos/haiku/haiku/trunk@28561 a95241bf-73f2-0310-859d-f6bbb57e9c96
2008-11-08 12:00:57 +00:00

28 lines
530 B
C++

/*
* Copyright 2006-2008, Haiku.
* Distributed under the terms of the MIT License.
*
* Authors:
* Artur Wyszynski <harakash@gmail.com>
*/
#ifndef _GRADIENT_DIAMOND_H
#define _GRADIENT_DIAMOND_H
#include <Gradient.h>
class BPoint;
class BGradientDiamond : public BGradient {
public:
BGradientDiamond();
BGradientDiamond(const BPoint& center);
BGradientDiamond(float cx, float cy);
BPoint Center() const;
void SetCenter(const BPoint& center);
void SetCenter(float cx, float cy);
};
#endif // _GRADIENT_DIAMOND_H