Design Patterns
scroll_decorator.h
Go to the documentation of this file.
1 #ifndef DESIGNPATTERNS_DECORATOR_SCROLL_DECORATOR_H_
2 #define DESIGNPATTERNS_DECORATOR_SCROLL_DECORATOR_H_
3 
4 #include "decorator.h"
5 
6 namespace structural
7 {
8  class ScrollDecorator : public Decorator
9  {
10  public:
11  explicit ScrollDecorator(VisualComponentInterface*);
12  };
13 }
14 
15 #endif
Definition: shape_interface.h:11
Definition: decorator.h:8
Definition: scroll_decorator.h:8
ScrollDecorator(VisualComponentInterface *)