jerry7
21st March 2011, 04:03
hi,
uic generate code like this:
class Ui_MainWindow
{
// auto-generated stuff
};
namespace Ui {
class MainWindow: public Ui_MainWindow {};
}
why not like this?
namespace Ui {
class MainWindow
{
// auto-generated stuff
};
}
Is the latter more clearly and simply?
uic generate code like this:
class Ui_MainWindow
{
// auto-generated stuff
};
namespace Ui {
class MainWindow: public Ui_MainWindow {};
}
why not like this?
namespace Ui {
class MainWindow
{
// auto-generated stuff
};
}
Is the latter more clearly and simply?