blob: fbec61c3ebe7ef0d9b9f698c9bc6461136b0d236 [file] [log] [blame]
//
// RACObjCRuntime.h
// ReactiveCocoa
//
// Created by Cody Krieger on 5/19/12.
// Copyright (c) 2012 GitHub, Inc. All rights reserved.
//
#import <Foundation/Foundation.h>
// A private class containing wrappers to runtime functions.
@interface RACObjCRuntime : NSObject
// Invokes objc_allocateClassPair(). Can be called from ARC code.
+ (Class)createClass:(const char *)className inheritingFromClass:(Class)superclass;
@end