diff --git a/src/common/mlapplication.h b/src/common/mlapplication.h index 7288dc8e2..c02e968b4 100644 --- a/src/common/mlapplication.h +++ b/src/common/mlapplication.h @@ -40,6 +40,7 @@ public: static const QString architecturalSuffix(const HW_ARCHITECTURE hw) {return "_" + QString::number(int(hw)) + "bit";} static const QString appArchitecturalName(const HW_ARCHITECTURE hw) {return appName() + architecturalSuffix(hw) + "_" + MeshLabScalarTest::floatingPointPrecision();} static const QString appVer() {return tr("2016"); } + static const QString shortName() { return appName() + " " + appVer(); } static const QString completeName(const HW_ARCHITECTURE hw){return appArchitecturalName(hw) + " v" + appVer(); } static const QString organization(){return tr("VCG");} static const QString organizationHost() {return tr("http://vcg.isti.cnr.it");}