xtd 0.2.0
effect.hpp
Go to the documentation of this file.
1
4#pragma once
5#include <xtd/abstract>
6#include "../../graphics.hpp"
7#include "../../rectangle.hpp"
8
10namespace xtd {
12 namespace drawing {
15 namespace imaging {
17 class image_effector;
19
21 namespace effects {
33 protected:
35
40 virtual void apply(xtd::drawing::image& image) const = 0;
42 };
43 }
44 }
45 }
46}
An abstract base class that provides functionality for the bitmap and metafile descended classes.
Definition image.hpp:53
The xtd::drawing::imaging::image_effector allows effects defined in the xtd::drawing::imaging::effect...
Definition image_effector.hpp:25
#define abstract_
This keyword is used to represents an abstract class.
Definition abstract.hpp:25
The xtd namespace contains all fundamental classes to access Hardware, Os, System,...
Definition xtd_about_box.hpp:10
Represents the base class for all effects.
Definition effect.hpp:31
virtual void apply(xtd::drawing::image &image) const =0
Apply the effect.