File: MWFakeDoc.h

package info (click to toggle)
gtamsanalyzer.app 0.42-6
  • links: PTS
  • area: main
  • in suites: squeeze, wheezy
  • size: 6,112 kB
  • ctags: 866
  • sloc: objc: 34,338; ansic: 8,762; cpp: 384; makefile: 59; sh: 47
file content (30 lines) | stat: -rwxr-xr-x 928 bytes parent folder | download | duplicates (7)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
//
//  MWFakeDoc.h
//  avtams
//
//  Created by matthew on Thu Mar 18 2004.
//  Copyright (c) 2004 __MyCompanyName__. All rights reserved.
//

#import <Foundation/Foundation.h>
#import "tamsutils.h"
#import "myProject.h"

@interface MWFakeDoc : NSObject {
    BOOL openState;
    BOOL isDirty;
    NSRange selRange;
    NSMutableAttributedString *theDoc;
    MWFile *myMWFile;
    myProject *gWorkBench;
    

}
-(void) setWorkBench: (id) wb;
-(id) initWithMWFile: (MWFile *) mw workBench: (myProject *) wb;
-(BOOL) isReal;
-(void) recode: (NSString *) what comment:(NSString *) cmt first: (int) bwhere last: (int) ewhere from: (id) who withDef: (NSString *) myDef;
-(void) recode: (NSString *) what first: (int) bwhere last: (int) ewhere from: (id) who withDef: (NSString *) myDef;
-(void) addCode: (NSString *) what from: (int) bwhere to: (int) ewhere from: (id) who withDef: (NSString *) myDef;
-(MWFile *) getMyMWFile;
@end