mirror of
https://github.com/python-LimeReport/LimeReport.git
synced 2025-03-08 19:33:55 +03:00
10 lines
164 B
C++
10 lines
164 B
C++
#ifndef LRPAGEINITINTF_H
|
|
#define LRPAGEINITINTF_H
|
|
|
|
class IPageInit{
|
|
public:
|
|
virtual void pageObjectHasBeenLoaded() = 0;
|
|
};
|
|
|
|
#endif // LRPAGEINITINTF_H
|