diff options
| author | 2017-09-12 01:01:32 +0000 | |
|---|---|---|
| committer | 2017-09-12 01:01:32 +0000 | |
| commit | 655da335700eda383b2f99c8a90c72a4dc1e0a9d (patch) | |
| tree | 472d4e985713330c9a4b322f2740376f30ab8176 /cmds/lshal/TextTable.h | |
| parent | 68fff2385bad7d031188ac1466e8135f9f2e00d8 (diff) | |
| parent | e1111eb11df289f44be3ba452dd50433e1439fb5 (diff) | |
Merge changes from topic "lshal_pretty" am: 303322f06a
am: e1111eb11d
Change-Id: I8a053e2ad9c41fa5583cfcfcf4a2c6f8a686eb0d
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; |