mirror of
https://github.com/python-LimeReport/LimeReport.git
synced 2024-12-23 20:22:58 +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
|