Am trei clase:
class QMySQL
{
[...]
int Open();
[...]
}
------------------
class QMainWindow
{
[...]
QMySQL *mysql;
int CreazaRaport();
[...]
}
int MainWindow::CreazaRaport()
{
new Report();
}
---------------------------
class Report
{
[...]
int show();
[...]
}
int Report::show()
{
Aici am nevoie sa accesez mysql->open()
Cum fac asta?
}
--------------------
Serghei.
---
Send e-mail to '[EMAIL PROTECTED]' with 'unsubscribe rlug' to
unsubscribe from this list.
