Added {CLEARFIELD} to autotype commands. Stubbs for {DELAY X}

This commit is contained in:
michael starke
2014-08-20 12:46:02 +02:00
parent 04f519bd52
commit 9458c5f8a0
6 changed files with 114 additions and 3 deletions

36
MacPass/MPAutotypeDelay.m Normal file
View File

@@ -0,0 +1,36 @@
//
// MPAutotypeDelay.m
// MacPass
//
// Created by Michael Starke on 20/08/14.
// Copyright (c) 2014 HicknHack Software GmbH. All rights reserved.
//
#import "MPAutotypeDelay.h"
@interface MPAutotypeDelay () {
@private
NSUInteger _delay;
}
@end
@implementation MPAutotypeDelay
- (id)init {
self = [self initWithDelay:0];
return self;
}
- (instancetype)initWithDelay:(NSUInteger)delay {
self = [super init];
if(self) {
_delay = delay;
}
return self;
}
- (void)execute {
usleep((useconds_t)(_delay*1000*1000));
}
@end