Normand Briere
2019-08-01 abb71c81c8a351cda9a2918dcaa7ee61e6c125c5
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
class cTemplate extends Composite implements java.io.Serializable
{
    cTemplate()
    {
        super("Template");
    }
 
    Object3D deepCopy()
    {
            Composite comp = new cTemplate();
            deepCopySelf(comp);
            return comp;
    }
 
    boolean ReadOnly()
    {
        return false; // june 2014 trop bordelique... true;
    }
}