We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
For example this class constructor
AutomaticTest::AutomaticTest() : m_test(0), m_test_two(false) { // constructor }
gets converted to
AutomaticTest.AutomaticTest() : m_test(0), m_test_two(False) # constructor
My expected result was something like this
def AutomaticTest(self): # or def __init__(self): self.m_test(0) = 0 self.m_test_two = False # constructor
For example this class constructor
gets converted to
My expected result was something like this