Skip to content

Instantly share code, notes, and snippets.

/myclass.cpp Secret

Created May 13, 2016 08:16
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save anonymous/76512a747730880bf233793178a8d807 to your computer and use it in GitHub Desktop.
Save anonymous/76512a747730880bf233793178a8d807 to your computer and use it in GitHub Desktop.
#include "myclass.h"
MyClass::MyClass(QObject *parent) : QObject(parent)
{
}
QString MyClass::getText(int count) const
{
QString s = "";
return s.fill('*', count);
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment