CoCalc Logo Icon
StoreFeaturesDocsShareSupportNewsAboutSign UpSign In
rapid7

Real-time collaboration for Jupyter Notebooks, Linux Terminals, LaTeX, VS Code, R IDE, and more,
all in one place.

GitHub Repository: rapid7/metasploit-framework
Path: blob/master/external/source/osx/isight/CSGImage.h
Views: 11780
1
//
2
// CSGImage.h
3
// MotionTracker
4
//
5
// Created by Tim Omernick on 3/6/05.
6
// Copyright 2005 Tim Omernick. All rights reserved.
7
//
8
9
#import <Cocoa/Cocoa.h>
10
11
@interface CSGImage : NSImage
12
{
13
NSTimeInterval sampleTime;
14
}
15
16
- (NSTimeInterval)sampleTime;
17
- (void)setSampleTime:(NSTimeInterval)newSampleTime;
18
19
@end
20
21