You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
24 lines
311 B
24 lines
311 B
#include "OwnUnderscore.hpp"
|
|
|
|
#include "OwnUnderscore_p.h"
|
|
|
|
OwnUnderscorePrivate::OwnUnderscorePrivate()
|
|
{
|
|
}
|
|
|
|
OwnUnderscorePrivate::~OwnUnderscorePrivate()
|
|
{
|
|
}
|
|
|
|
OwnUnderscore::OwnUnderscore()
|
|
: d(new OwnUnderscorePrivate)
|
|
{
|
|
}
|
|
|
|
OwnUnderscore::~OwnUnderscore()
|
|
{
|
|
delete d;
|
|
}
|
|
|
|
#include "moc_OwnUnderscore.cpp"
|