/filesystems/procfs/sequencegrab/CSGImage.m
http://macfuse.googlecode.com/ · Objective C · 32 lines · 15 code · 8 blank · 9 comment · 0 complexity · cf2e70f1b541f85445e1947c0ac9685e MD5 · raw file
- //
- // CSGImage.m
- // MotionTracker
- //
- // Created by Tim Omernick on 3/6/05.
- // Copyright 2005 Tim Omernick. All rights reserved.
- //
- #import "CSGImage.h"
- @implementation CSGImage
- // NSObject subclass
- - (NSString *)description;
- {
- return [NSString stringWithFormat:@"<%@: %p> (sampleTime=%.4f)", NSStringFromClass([self class]), self, sampleTime];
- }
- // API
- - (NSTimeInterval)sampleTime;
- {
- return sampleTime;
- }
- - (void)setSampleTime:(NSTimeInterval)newSampleTime;
- {
- sampleTime = newSampleTime;
- }
- @end