22 lines
385 B
C++
22 lines
385 B
C++
|
|
#ifndef SPIN_H
|
|
#define SPIN_H
|
|
|
|
#include "LogoBox.h"
|
|
#include "Mode.h"
|
|
#include "GnomeScreensaver.h"
|
|
|
|
class Spin : public Mode
|
|
{
|
|
public:
|
|
bool expose (GnomeScreensaver & gs);
|
|
bool configure (GnomeScreensaver & gs, int width,
|
|
int height);
|
|
bool update (GnomeScreensaver & gs);
|
|
protected:
|
|
LogoBox m_logobox;
|
|
};
|
|
|
|
#endif /* SPIN_H */
|
|
|