split into multiple files for better organization
This commit is contained in:
parent
3b3ffe166b
commit
7424df631d
9 changed files with 1540 additions and 1472 deletions
23
tools/generator_utils.h
Normal file
23
tools/generator_utils.h
Normal file
|
@ -0,0 +1,23 @@
|
|||
#ifndef __DBUSXX_TOOLS_GENERATOR_UTILS_H
|
||||
#define __DBUSXX_TOOLS_GENERATOR_UTILS_H
|
||||
|
||||
#include <string>
|
||||
#include <sstream>
|
||||
#include <iomanip>
|
||||
|
||||
const char *atomic_type_to_string(char t);
|
||||
std::string stub_name(std::string name);
|
||||
std::string signature_to_type(const std::string &signature);
|
||||
void _parse_signature(const std::string &signature, std::string &type, unsigned int &i);
|
||||
void underscorize(std::string &str);
|
||||
|
||||
/// create std::string from any number
|
||||
template <typename T>
|
||||
std::string toString (const T &thing, int w = 0, int p = 0)
|
||||
{
|
||||
std::ostringstream os;
|
||||
os << std::setw(w) << std::setprecision(p) << thing;
|
||||
return os.str();
|
||||
}
|
||||
|
||||
#endif//__DBUSXX_TOOLS_GENERATOR_UTILS_H
|
Loading…
Add table
Add a link
Reference in a new issue