mirror of
https://github.com/fralx/LimeReport.git
synced 2025-03-14 14:23:50 +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
|