* doc/org/tut50.org: Simplify UML diagrams.
This commit is contained in:
parent
15ea2e66e8
commit
fcd6783157
1 changed files with 8 additions and 7 deletions
|
|
@ -462,9 +462,9 @@ package spot {
|
|||
|
||||
class succ_iterator {
|
||||
succ_iterator(twa_succ_iterator*)
|
||||
bool operator==(succ_iterator) const
|
||||
bool operator!=(succ_iterator) const
|
||||
const twa_succ_iterator* operator*() const
|
||||
bool operator==(succ_iterator)
|
||||
bool operator!=(succ_iterator)
|
||||
const twa_succ_iterator* operator*()
|
||||
void operator++()
|
||||
}
|
||||
}
|
||||
|
|
@ -500,15 +500,16 @@ package spot {
|
|||
}
|
||||
|
||||
abstract class state {
|
||||
+{abstract}int compare(const state*) const
|
||||
+{abstract}size_t hash() const
|
||||
+{abstract}state* clone() const
|
||||
+void destroy() const
|
||||
+{abstract}int compare(const state*)
|
||||
+{abstract}size_t hash()
|
||||
+{abstract}state* clone()
|
||||
+void destroy()
|
||||
#~state()
|
||||
}
|
||||
}
|
||||
|
||||
|
||||
|
||||
class twa_graph
|
||||
|
||||
twa <|-- twa_graph
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue