mirror of
https://github.com/python-LimeReport/LimeReport.git
synced 2025-01-11 12:28:09 +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
|