diff options
| author | 2017-09-12 01:19:23 +0000 | |
|---|---|---|
| committer | 2017-09-12 01:19:23 +0000 | |
| commit | 424b40487a6fb7fc7043bdd727622bf3e8cddaa0 (patch) | |
| tree | d08d55bd794e71795bf62819f335c63fe5fe8e07 /cmds/lshal/TextTable.h | |
| parent | bbeafe541eb6fda16992d6bc8f14422224353cd2 (diff) | |
| parent | 655da335700eda383b2f99c8a90c72a4dc1e0a9d (diff) | |
Merge changes from topic "lshal_pretty" am: 303322f06a am: e1111eb11d
am: 655da33570
Change-Id: I11a78b12e3b20dadb48dc0703e8ac26ba1074867
Diffstat (limited to 'cmds/lshal/TextTable.h')
| -rw-r--r-- | cmds/lshal/TextTable.h | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/cmds/lshal/TextTable.h b/cmds/lshal/TextTable.h index 4636f15a27..91d522aef7 100644 --- a/cmds/lshal/TextTable.h +++ b/cmds/lshal/TextTable.h @@ -21,8 +21,6 @@ #include <string> #include <vector> -#include "TableEntry.h" - namespace android { namespace lshal { @@ -68,6 +66,8 @@ public: void add(const std::string& s) { mTable.emplace_back(s); } void add(std::string&& s) { mTable.emplace_back(std::move(s)); } + void addAll(TextTable&& other); + // Prints the table to out, with column widths adjusted appropriately according // to the content. void dump(std::ostream& out) const; |