-
Notifications
You must be signed in to change notification settings - Fork 8
Expand file tree
/
Copy pathSubgraph.cpp
More file actions
50 lines (38 loc) · 1.39 KB
/
Subgraph.cpp
File metadata and controls
50 lines (38 loc) · 1.39 KB
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
47
48
49
50
//
// Subgraph.cpp
// OpenAttributeGraphCxx
#include <OpenAttributeGraphCxx/Graph/Subgraph.hpp>
#include <OpenAttributeGraph/OAGSubgraph.h>
pthread_key_t OAG::Subgraph::_current_subgraph_key;
OAG::Subgraph* OAG::Subgraph::from_cf(OAGSubgraphRef storage) OAG_NOEXCEPT {
return storage->subgraph;
}
void OAG::Subgraph::clear_object() const OAG_NOEXCEPT {
// TODO
}
void OAG::Subgraph::invalidate_and_delete_(bool) const OAG_NOEXCEPT {
// TODO
}
void OAG::Subgraph::apply(OAGAttributeFlags flags, OAG::ClosureFunction<void, OAGAttribute> body) const OAG_NOEXCEPT {
// TODO
}
OAG::Subgraph::Subgraph(OAG::SubgraphObject* object, OAG::Graph::Context& context, OAG::AttributeID):
_object(object), _graph(context.get_graph()), _graph_context_id(context.get_id()) {
// TODO
}
OAGUniqueID OAG::Subgraph::add_observer(OAG::ClosureFunction<void> observer) const OAG_NOEXCEPT {
// TODO
return OAGMakeUniqueID();
}
void OAG::Subgraph::remove_observer(OAGUniqueID observerID) const OAG_NOEXCEPT {
// TODO
}
void OAG::Subgraph::begin_tree(OAG::AttributeID id, OAG::swift::metadata const* type, unsigned int flags) const OAG_NOEXCEPT {
// TODO
}
void OAG::Subgraph::add_tree_value(OAG::AttributeID id, OAG::swift::metadata const *type, const char* key, uint32_t flags) const OAG_NOEXCEPT {
// TODO
}
void OAG::Subgraph::end_tree(OAG::AttributeID id) const OAG_NOEXCEPT {
// TODO
}