diff options
author | Loek Le Blansch <loek@pipeframe.xyz> | 2024-06-13 11:13:48 +0200 |
---|---|---|
committer | Loek Le Blansch <loek@pipeframe.xyz> | 2024-06-13 11:13:48 +0200 |
commit | 14e8d8112f0db9575838b40355197b9fc196a6ba (patch) | |
tree | 0eee8de89118484e830bf0f7cbba725523db6f60 /docs | |
parent | 05cefcf4a77a56b349699331c2c9e5e132e1a7ab (diff) |
read filename from argv or contents from stdin
Diffstat (limited to 'docs')
-rw-r--r-- | docs/class-diag.puml | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/docs/class-diag.puml b/docs/class-diag.puml index 0417c49..b32b9bf 100644 --- a/docs/class-diag.puml +++ b/docs/class-diag.puml @@ -6,6 +6,7 @@ skinparam classAttributeIconSize 0 class main { +main(int argc, char** argv) : int + +open_input(int argc, char** argv) : istream* } hide main circle @@ -169,6 +170,7 @@ exception ParserException { class Parser { +Parser() + +Parser(Circuit& circuit) +~Parser() -circuit : Circuit* -operator<<(Parser& parser, istream s) : istream& |