mirror of
https://github.com/fralx/LimeReport.git
synced 2024-12-24 00:33:02 +03:00
0fca7169d3
except those placed in 3rdparty directories.
10 lines
165 B
C++
10 lines
165 B
C++
#ifndef LRPAGEINITINTF_H
|
|
#define LRPAGEINITINTF_H
|
|
|
|
class IPageInit {
|
|
public:
|
|
virtual void pageObjectHasBeenLoaded() = 0;
|
|
};
|
|
|
|
#endif // LRPAGEINITINTF_H
|