diff options
| author | 2017-09-12 01:20:57 +0000 | |
|---|---|---|
| committer | 2017-09-12 01:20:57 +0000 | |
| commit | 12d83eaf6a54e6e9fd23c5c1a729fb30d21a3fc2 (patch) | |
| tree | 735016476802d5480e58173b5f8a5a6086a6089a /cmds/lshal/TextTable.h | |
| parent | 76127e7eba786e1ee20f79227b973448757f781c (diff) | |
| parent | 424b40487a6fb7fc7043bdd727622bf3e8cddaa0 (diff) | |
Merge changes from topic "lshal_pretty" am: 303322f06a am: e1111eb11d am: 655da33570
am: 424b40487a
Change-Id: Ic64ba89bde54489955c1cd5a97ea8440c2edaef3
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; |