diff options
author | Josh Blum | 2013-03-26 00:41:12 -0500 |
---|---|---|
committer | Josh Blum | 2013-03-26 00:41:12 -0500 |
commit | 38b24b7ef6e3d82c1a14b93c4ffafadbc2f1ae9b (patch) | |
tree | e33b921fb968ff14f260ee5b4afa254733ee37de /include/gras/top_block.hpp | |
parent | a23b425c689ac66cd4d6e986b8a4292e19fc9710 (diff) | |
download | sandhi-38b24b7ef6e3d82c1a14b93c4ffafadbc2f1ae9b.tar.gz sandhi-38b24b7ef6e3d82c1a14b93c4ffafadbc2f1ae9b.tar.bz2 sandhi-38b24b7ef6e3d82c1a14b93c4ffafadbc2f1ae9b.zip |
gras: rename stats to query
Diffstat (limited to 'include/gras/top_block.hpp')
-rw-r--r-- | include/gras/top_block.hpp | 7 |
1 files changed, 4 insertions, 3 deletions
diff --git a/include/gras/top_block.hpp b/include/gras/top_block.hpp index e288d95..f99d341 100644 --- a/include/gras/top_block.hpp +++ b/include/gras/top_block.hpp @@ -78,11 +78,12 @@ struct GRAS_API TopBlock : HierBlock virtual bool wait(const double timeout); /*! - * Get block usage statistics in some format. - * Args are used to set the query parameters. + * Query the flow graph for information. * An external app will visualize the data. + * \param args the input query args + * \return formatted result of the query */ - virtual std::string get_stats(const std::string &args); + virtual std::string query(const std::string &args); }; } //namespace gras |