22 lines
300 B
C++
22 lines
300 B
C++
//
|
|
// Created by selim on 11.05.2022.
|
|
//
|
|
|
|
#ifndef AUTOCAT_GNOME_SPINNER_H
|
|
#define AUTOCAT_GNOME_SPINNER_H
|
|
|
|
#include "Widget.h"
|
|
|
|
namespace gtkpp {
|
|
|
|
class Spinner: public Widget {
|
|
public:
|
|
Spinner();
|
|
void start();
|
|
void stop();
|
|
};
|
|
|
|
}
|
|
|
|
#endif //AUTOCAT_GNOME_SPINNER_H
|