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-2.2.3.beta.1 platform/osx/Rhodes Debugger/DebugConnection.h
rhodes-2.2.2 platform/osx/Rhodes Debugger/DebugConnection.h
rhodes-2.2.2.beta.1 platform/osx/Rhodes Debugger/DebugConnection.h
rhodes-2.2.1 platform/osx/Rhodes Debugger/DebugConnection.h
rhodes-2.2.1.beta.2 platform/osx/Rhodes Debugger/DebugConnection.h
rhodes-2.2.1.beta.1 platform/osx/Rhodes Debugger/DebugConnection.h
rhodes-2.2.0 platform/osx/Rhodes Debugger/DebugConnection.h
rhodes-2.2.0.beta.3 platform/osx/Rhodes Debugger/DebugConnection.h
rhodes-2.2.0.beta.2 platform/osx/Rhodes Debugger/DebugConnection.h
rhodes-2.2.0.beta.1 platform/osx/Rhodes Debugger/DebugConnection.h
rhodes-2.1.0 platform/osx/Rhodes Debugger/DebugConnection.h
rhodes-2.0.3 platform/osx/Rhodes Debugger/DebugConnection.h
rhodes-2.0.2 platform/osx/Rhodes Debugger/DebugConnection.h
rhodes-2.0.0 platform/osx/Rhodes Debugger/DebugConnection.h
rhodes-2.0.0.rc2 platform/osx/Rhodes Debugger/DebugConnection.h
rhodes-2.0.0.rc1 platform/osx/Rhodes Debugger/DebugConnection.h
rhodes-2.0.0.beta11 platform/osx/Rhodes Debugger/DebugConnection.h
rhodes-2.0.0.beta10 platform/osx/Rhodes Debugger/DebugConnection.h
rhodes-2.0.0.beta9 platform/osx/Rhodes Debugger/DebugConnection.h
rhodes-2.0.0.beta8 platform/osx/Rhodes Debugger/DebugConnection.h