Skip to content
GitLab
Projects
Groups
Snippets
/
Help
Help
Support
Community forum
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in
Toggle navigation
Menu
Open sidebar
Spot
Spot
Commits
138ce95c
Commit
138ce95c
authored
Aug 19, 2003
by
Alexandre Duret-Lutz
Browse files
* src/ltlast/formula.hh: Make it clear that ref() and unref()
deals with one node, not a entire formula.
parent
2113d090
Changes
2
Hide whitespace changes
Inline
Side-by-side
ChangeLog
View file @
138ce95c
2003-08-19 Alexandre Duret-Lutz <aduret@src.lip6.fr>
* src/ltlast/formula.hh: Make it clear that ref() and unref()
deals with one node, not a entire formula.
2003-08-18 Alexandre Duret-Lutz <aduret@src.lip6.fr>
* configure.ac: Bump version to 0.0i.
...
...
src/ltlast/formula.hh
View file @
138ce95c
...
...
@@ -22,9 +22,19 @@ namespace spot
/// Entry point for vspot::ltl::const_visitor instances.
virtual
void
accept
(
const_visitor
&
v
)
const
=
0
;
/// \brief clone this formula
/// \brief clone this node
///
/// This increments the reference counter of this node (if one is
/// used). You should almost never use this method directly as
/// it doesn't touch the children. If you want to clone a
/// whole formula, use spot::ltl::clone() instead.
formula
*
ref
();
/// \brief release formula
/// \brief release this node
///
/// This decrements the reference counter of this node (if one is
/// used) and can free the object. You should almost never use
/// this method directly as it doesn't touch the children. If you
/// want to release a whole formula, use spot::ltl::destroy() instead.
static
void
unref
(
formula
*
f
);
protected:
...
...
Write
Preview
Supports
Markdown
0%
Try again
or
attach a new file
.
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment