ASPiK SDK
ciboxblurfilter.h
1 // This file is part of VSTGUI. It is subject to the license terms
2 // in the LICENSE file found in the top-level directory of this
3 // distribution and at http://github.com/steinbergmedia/vstgui/LICENSE
4 
5 #pragma once
6 
7 #include "../lib/cbitmapfilter.h"
8 
9 //------------------------------------------------------------------------
10 namespace VSTGUI {
11 namespace BitmapFilter {
12 
13 //------------------------------------------------------------------------
15 {
16 public:
17  CIBoxBlurFilter ();
18 
19  bool run (bool replace) override;
20 
21  static IFilter* CreateFunction (IdStringPtr _name) { return new CIBoxBlurFilter (); }
22 };
23 
24 //------------------------------------------------------------------------
25 } // BitmapFilter
26 } // VSTGUI
Filter Interface.
Definition: cbitmapfilter.h:71
A Base Class for Implementing Bitmap Filters.
Definition: cbitmapfilter.h:203
Definition: ciboxblurfilter.h:14
Definition: customcontrols.cpp:8