mirror of
https://git.mirrors.martin98.com/https://github.com/slic3r/Slic3r.git
synced 2025-10-06 21:06:33 +08:00
16 lines
263 B
C++
16 lines
263 B
C++
#ifndef NOTIFIER_HPP
|
|
#define NOTIFIER_HPP
|
|
|
|
namespace Slic3r { namespace GUI {
|
|
|
|
/// Class to perform window manager notifications using Growl and/or DBus XWindow
|
|
|
|
class Notifier {
|
|
public:
|
|
Notifier() { }
|
|
};
|
|
|
|
}} // Namespace Slic3r::GUI
|
|
|
|
#endif // NOTIFIER_HPP
|