home *** CD-ROM | disk | FTP | other *** search
- #import <objc/Object.h>
- #import <appkit/appkit.h>
-
-
- @interface MiscTapper:Object
-
- {
- NXSoundIn* tapper_device;
- NXRecordStream* tapper_stream;
- DPSTimedEntry teNum;
- }
-
- - init; // Spawns the Tapper thread and begins recording.
- // If another Tapper has been allocated and initialized,
- // this method does nothing and returns NULL.
-
- - free; // Kills Tapper thread, frees Tapper, and allows another
- // Tapper to be created and initialized.
- - suspend:sender; // Suspends tapping
- - resume:sender; // Resumes tapping
-
- - update; // Check up on Tapper's progress. You shouldn't need
- // to call this, though it won't hurt anything.
-
- @end