-
Notifications
You must be signed in to change notification settings - Fork 4
/
Copy pathOCVDotRepresentations.h
47 lines (29 loc) · 1 KB
/
OCVDotRepresentations.h
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
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
//
// OCVDotRepresentations.h
// ObjCViz
//
// Created by Olivier Gutknecht on 12/17/06.
// Copyright 2006 No Distance. See LICENSE.txt file.
//
#import <Foundation/Foundation.h>
#import "OCVContext.h"
@interface NSObject (DotRepresentation)
-(BOOL)processFields;
-(NSString*)dotName;
-(void)appendDotRepresentationToString:(NSMutableString*)s withContext:(OCVContext*)context;
@end
@interface NSNull (DotRepresentation)
-(void)appendDotRepresentationToString:(NSMutableString*)s withContext:(OCVContext*)context;
@end
@interface NSString (DotRepresentation)
-(BOOL)processFields;
-(void)appendDotRepresentationToString:(NSMutableString*)s withContext:(OCVContext*)context;
@end
@interface NSArray (DotRepresentation)
-(BOOL)processFields;
-(void)appendDotRepresentationToString:(NSMutableString*)s withContext:(OCVContext*)context;
@end
@interface NSDictionary (DotRepresentation)
-(BOOL)processFields;
-(void)appendDotRepresentationToString:(NSMutableString*)s withContext:(OCVContext*)context;
@end