summaryrefslogtreecommitdiffstatshomepage
path: root/src/osd/modules/render/sliderdirtynotifier.h
blob: aa95bb8fa8254815da80e201d3c50e13d551f12e (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
// license:BSD-3-Clause
// copyright-holders:Ryan Holtz
//====================================================================
//
//  sliderdirtynotifier.cpp - Interface for a slider-changed callback
//
//====================================================================

#pragma once

#ifndef __RENDER_SLIDER_DIRTY_NOTIFIER__
#define __RENDER_SLIDER_DIRTY_NOTIFIER__

class slider_dirty_notifier
{
public:
	virtual ~slider_dirty_notifier() { }

	virtual void set_sliders_dirty() = 0;
};

#endif // __RENDER_SLIDER_DIRTY_NOTIFIER__