API Design Techniques
- by Dehumanizer
Is it right or more beautiful to name the functions with an prefix, like in Qt? Or using "many" namespaces, but 'normal' names for functions?
For example,
slOpenFile(); //"sl" means "some lib"
vs
some_lib::file_functions::openFile();
UPD: I've read somewhere that the first variant(using some prefix) is better, because the API users can…