Loading...
Searching...
No Matches
NCGraph.h
Go to the documentation of this file.
1#import "NCExport.h"
2#import <Foundation/Foundation.h>
3@class NCGraphEdge;
4@class NCGraphVertex;
5
6
20DEFAULT_EXPORT_ATTRIBUTE
21@interface NCGraph : NSObject
22
26@property (nonatomic, nonnull, readonly) NSArray<NCGraphVertex *> * vertexes;
27
31@property (nonatomic, nonnull, readonly) NSArray<NCGraphEdge *> * edges;
32
33@end