#ifndef CLIUTILS_H #define CLIUTILS_H #include #include void initCliUtils(); int getCliColumns(); int getCliRows(); struct AsciiTree { QList childs; QString label; }; Q_DECLARE_METATYPE(AsciiTree) QString toAsciiTree(const AsciiTree& tree); #endif // CLIUTILS_H