summaryrefslogtreecommitdiff
path: root/doxygen/man/man3/cmd2_ParsedString.3
diff options
context:
space:
mode:
Diffstat (limited to 'doxygen/man/man3/cmd2_ParsedString.3')
-rw-r--r--doxygen/man/man3/cmd2_ParsedString.359
1 files changed, 59 insertions, 0 deletions
diff --git a/doxygen/man/man3/cmd2_ParsedString.3 b/doxygen/man/man3/cmd2_ParsedString.3
new file mode 100644
index 0000000..4713001
--- /dev/null
+++ b/doxygen/man/man3/cmd2_ParsedString.3
@@ -0,0 +1,59 @@
+.TH "cmd2::ParsedString" 3 "Fri Sep 9 2011" "Cmd2" \" -*- nroff -*-
+.ad l
+.nh
+.SH NAME
+cmd2::ParsedString \-
+.SH SYNOPSIS
+.br
+.PP
+.SS "Public Member Functions"
+
+.in +1c
+.ti -1c
+.RI "def \fBfull_parsed_statement\fP"
+.br
+.ti -1c
+.RI "def \fBwith_args_replaced\fP"
+.br
+.in -1c
+.SH "Detailed Description"
+.PP
+Definition at line 257 of file cmd2\&.py'\&.
+.SH "Member Function Documentation"
+.PP
+.SS "def cmd2::ParsedString::full_parsed_statement (self)"
+.PP
+Definition at line 258 of file cmd2\&.py'\&.
+.PP
+References cmd2::Cmd::parsed(), and cmd2::Cmd::parser\&.
+.PP
+.nf
+258
+259 def full_parsed_statement(self):
+260 new = ParsedString('%s %s' % (self\&.parsed\&.command, self\&.parsed\&.args))
+261 new\&.parsed = self\&.parsed
+262 new\&.parser = self\&.parser
+ return new
+.fi
+.SS "def cmd2::ParsedString::with_args_replaced (self, newargs)"
+.PP
+Definition at line 263 of file cmd2\&.py'\&.
+.PP
+References cmd2::Cmd::parsed(), and cmd2::Cmd::parser\&.
+.PP
+.nf
+263
+264 def with_args_replaced(self, newargs):
+265 new = ParsedString(newargs)
+266 new\&.parsed = self\&.parsed
+267 new\&.parser = self\&.parser
+268 new\&.parsed['args'] = newargs
+269 new\&.parsed\&.statement['args'] = newargs
+270 return new
+
+.fi
+
+
+.SH "Author"
+.PP
+Generated automatically by Doxygen for Cmd2 from the source code'\&.