TestClass Class

Test class for overloaded signals and slots. More...

Header: #include <TestClass>

Public Functions

TestClass()
void dataChanged(int value)
void dataChanged(const String &value)
void process(int value)
void process(const String &value)
void regularFunction(int value)
void regularFunction(const String &value)

Detailed Description

Member Function Documentation

TestClass::TestClass()

Constructs a TestClass.

void TestClass::dataChanged(int value)

This method takes an integer value. (Tests overload note for methods that aren't signals/slots)

void TestClass::dataChanged(const String &value)

This method takes a string value.

This is an overloaded function.

void TestClass::process(int value)

Processes an integer value. (Tests overload note for methods that aren't signals/slots)

void TestClass::process(const String &value)

Processes a string value.

This is an overloaded function.

void TestClass::regularFunction(int value)

Regular function that takes an integer value.

void TestClass::regularFunction(const String &value)

Regular function that takes a string value.

This is an overloaded function.