Files
fail/core/SAL/ovp/init.ah

15 lines
261 B
Plaintext

#ifndef __OVPINIT_AH__
#define __OVPINIT_AH__
#include "../SALInst.hpp"
aspect OVPInit {
advice call("% ...::startSimulation(...)") : before ()
{
std::cout << "OVP init aspect!" << std::endl;
fail::simulator.startup();
}
};
#endif // __OVPINIT_AH__