Having a large c++ project I would like to change some styles.
I am currently wondering if changing the public class methods from camelCase to PascalCase is actually possible without having to write a full refactoring tool. eg:
class MyLovelyClassPlentyOfCamelCaseMethods
{
public:
void aCamelCaseMethodIWouldLoveToConvertToPascalCaseEverywhere();
protected:
private:
void anotherCamelCaseMethodIWouldLoveToRemainAsIs();
};
I know that LLVM/clang tools are a high powerful tools that can be oriented to achieve this but I am completely new at clang and clang-tidy in every aspect so any step by step guiding through is greatly welcomed. I have found several resources and documentation about but still couldn't reach to any useful point and started being really confused on how to go along with this.
Thanks a lot to the community in advance!