blob: 7435647a182f0003358a1b738afc6556d6c171c4 [file] [log] [blame]
//
// WXDomainController.h
// PonyDebugger
//
// Created by Mike Lewis on 2/27/12.
//
// Licensed to Square, Inc. under one or more contributor license agreements.
// See the LICENSE file distributed with this work for the terms under
// which Square, Inc. licenses this file to you.
//
#import <Foundation/Foundation.h>
#import "WXDynamicDebuggerDomain.h"
@interface WXDomainController : NSObject <WXCommandDelegate>
@property (nonatomic, readonly) BOOL enabled;
@property (nonatomic, strong) WXDynamicDebuggerDomain *domain;
+ (NSString *)domainName;
// Abstract... Override this
+ (Class)domainClass;
@end