Sha256: 71f1a6798ae4a088c26d04258fd92ae6420477689aa8a1445e22c3b9b5661a40

Contents?: true

Size: 965 Bytes

Versions: 75

Compression:

Stored size: 965 Bytes

Contents

//
//  DebugConnection.h
//  Rhodes Debugger
//

#import <Cocoa/Cocoa.h>

@protocol DebugConnectionDelegate 
@optional
- (void) stopInFile:(NSString *)file atLine:(int)line sender:(id)sender;
- (void) connecting:(id)sender;
- (void) connected:(id)sender;
- (void) disconnected:(id)sender;
- (void) paused:(id)sender;
- (void) resumed:(id)sender;
- (void) rubyStdout:(NSString *)output sender:(id)sender;
@end 

@interface DebugConnection : NSObject {
	IBOutlet NSObject <DebugConnectionDelegate> *delegate;
	bool waitForConnection;
	bool isConnected;
}
@property(assign) bool waitForConnection;
@property(assign) bool isConnected;
@property(assign) NSObject <DebugConnectionDelegate> *delegate;

- (void) step;
- (void) stepOut;
- (void) pause;
- (void) resume;
- (void) setBreakPointInFile:(NSString*)file atLine:(int)line;
- (void) sendRubyCmd:(NSString *)rubyCmd;
- (void) clearBreakPoints;
- (void) terminate;
- (void) startWaiting;
- (void) stopWaiting;

@end

Version data entries

75 entries across 75 versions & 1 rubygems

Version Path
rhodes-3.0.2 platform/osx/Rhodes Debugger/DebugConnection.h
rhodes-3.0.2.beta.1 platform/osx/Rhodes Debugger/DebugConnection.h
rhodes-3.0.1 platform/osx/Rhodes Debugger/DebugConnection.h
rhodes-3.0.1.beta.8 platform/osx/Rhodes Debugger/DebugConnection.h
rhodes-3.0.1.beta.7 platform/osx/Rhodes Debugger/DebugConnection.h
rhodes-3.0.1.beta.6 platform/osx/Rhodes Debugger/DebugConnection.h
rhodes-3.0.1.beta.5 platform/osx/Rhodes Debugger/DebugConnection.h
rhodes-3.0.1.beta.4 platform/osx/Rhodes Debugger/DebugConnection.h
rhodes-3.0.1.beta.3 platform/osx/Rhodes Debugger/DebugConnection.h
rhodes-3.0.1.beta.2 platform/osx/Rhodes Debugger/DebugConnection.h
rhodes-3.0.0 platform/osx/Rhodes Debugger/DebugConnection.h
rhodes-3.0.0.beta.7 platform/osx/Rhodes Debugger/DebugConnection.h
rhodes-3.0.0.beta.6 platform/osx/Rhodes Debugger/DebugConnection.h
rhodes-3.0.0.beta.5 platform/osx/Rhodes Debugger/DebugConnection.h
rhodes-3.0.0.beta.4 platform/osx/Rhodes Debugger/DebugConnection.h
rhodes-3.0.0.beta.3 platform/osx/Rhodes Debugger/DebugConnection.h
rhodes-3.0.0.beta.2 platform/osx/Rhodes Debugger/DebugConnection.h
rhodes-3.0.0.beta.1 platform/osx/Rhodes Debugger/DebugConnection.h
rhodes-2.4.1 platform/osx/Rhodes Debugger/DebugConnection.h
rhodes-2.4.1.beta.1 platform/osx/Rhodes Debugger/DebugConnection.h