<!DOCTYPE html PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN">
<html>
<head>
  <meta content="text/html;charset=ISO-8859-1" http-equiv="Content-Type">
  <title></title>
</head>
<body bgcolor="#ffffff" text="#000000">
Hi,<br>
<br>
I wonder whether it is possible to do something like:<br>
<blockquote><tt>aspect CloneabilityGenerator {<br>
    pointcut classesToMakeCloneable() = "Class1" || "Classe2"|;<br>
  <br>
    advice classesToMakeCloneable() : <br>
        JoinPoint::??* clone() const {<br>
            return new JoinPoint::??(*this);<br>
        }<br>
};</tt><br>
</blockquote>
That is, is there access to the static context of an introduction?<br>
<br>
(By the way, is <tt>JoinPoint</tt> a template? It has static members
which are different for each joinpoint.)<br>
<br>
Regards,<br>
<br>
Manuel<br>
</body>
</html>