Files
cappuccino/Tools/XcodeCapp/XcodeCapp/XCCSourcesFinderOperation.h
T
Antoine Mercadal 47611b7615 NEW: XcodeCapp 4.0
XcodeCapp 4.0 is a major release of our beloved tool. In a nutshell it:

- allows to manage multiple projects simultaneously
- allows to follow operations and cancel them
- has a per project Error and Warning reporting
- supports capp_env as you can define additional paths and objj include path per project
- much more things
2015-08-04 10:35:23 -07:00

28 lines
752 B
Objective-C

//
// FindSourceFilesOperation.h
// XcodeCapp
//
// Created by Aparajita on 4/27/13.
// Copyright (c) 2013 Cappuccino Project. All rights reserved.
//
#import <Foundation/Foundation.h>
#import "XCCAbstractOperation.h"
@class XCCCappuccinoProject;
@class XCCTaskLauncher;
extern NSString * const XCCNeedSourceToProjectPathMappingNotification;
extern NSString * const XCCSourcesFinderOperationDidStartNotification;
extern NSString * const XCCSourcesFinderOperationDidEndNotification;
@interface XCCSourcesFinderOperation : XCCAbstractOperation
{
NSString *searchPath;
}
- (instancetype)initWithCappuccinoProject:(XCCCappuccinoProject *)cappuccinoProject taskLauncher:(XCCTaskLauncher*)aTaskLauncher sourcePath:(NSString *)sourcePath;
@end