/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

  1. //
  2. // CSGImage.m
  3. // MotionTracker
  4. //
  5. // Created by Tim Omernick on 3/6/05.
  6. // Copyright 2005 Tim Omernick. All rights reserved.
  7. //
  8. #import "CSGImage.h"
  9. @implementation CSGImage
  10. // NSObject subclass
  11. - (NSString *)description;
  12. {
  13. return [NSString stringWithFormat:@"<%@: %p> (sampleTime=%.4f)", NSStringFromClass([self class]), self, sampleTime];
  14. }
  15. // API
  16. - (NSTimeInterval)sampleTime;
  17. {
  18. return sampleTime;
  19. }
  20. - (void)setSampleTime:(NSTimeInterval)newSampleTime;
  21. {
  22. sampleTime = newSampleTime;
  23. }
  24. @end