qaccessorsgen

Developers Apps

Source i (link to git-repo or to original if based on someone elses unmodified work):

Add the source-code for this project on opencode.net

0
Become a Fan
5.0

Available as/for:
Description:
This project aims to generate getter and setter methods for a property of a C++ class (accessors) in a way that fits well with the Qt property system, reducing the boilerplate code written in a typical project.

sample input:
> qaccessorsgen TestClass QString name

sample output:

DECLARATIONS:
QString _name;

Q_PROPERTY(QString name READ name WRITE setName)

QString name();
void setName(const QString& value);

----------------------------
IMPLEMENTATION:
QString TestClass::name()
{
return _name ;
}

void TestClass::setName(const QString& value)
{
_name = value ;
}
Last changelog:

First release


Ratings & Comments

0 Comments

Be the first to comment
Pling
0 Affiliates
Details
license
version 0.0.1
updated
added
downloads 24h 0
mediaviews 24h 0
pageviews 24h 0

Other Developers Apps:

Oo-mox
actionless
last update date: 8 years ago

Score 6.5

KEXI
jstaniek
last update date: 7 years ago

Score 6.5

BlackAdder
appy
last update date: 20 years ago

Score 5.0

Wing IDE Professional
sdeibel
last update date: 15 years ago

Score 5.0

Quanta Gold
appy
last update date: 20 years ago

Score 5.0

Codie
elgunvo
last update date: 15 years ago

Score 5.0



System Tags