Incremental checkin.
[ITKit.git] / ITSlideHorizontallyWindowEffect.m
1 #import "ITSlideHorizontallyWindowEffect.h"
2
3
4 @implementation ITSlideHorizontallyWindowEffect
5
6
7 - (void)performAppear
8 {
9     NSLog(@"ITSlideHorizontallyWindowEffect does not implement performAppear.");
10 }
11
12 - (void)performVanish
13 {
14     NSLog(@"ITSlideHorizontallyWindowEffect does not implement performVanish.");
15 }
16
17 - (void)cancelAppear
18 {
19     NSLog(@"ITSlideHorizontallyWindowEffect does not implement cancelAppear.");
20 }
21
22 - (void)cancelVanish
23 {
24     NSLog(@"ITSlideHorizontallyWindowEffect does not implement cancelVanish.");
25 }
26
27
28 @end