3 #include <ail/exception.hpp>
7 struct construction_pattern
9 virtual void copy(construction_pattern
const & other
);
10 virtual void destroy();
12 construction_pattern();
13 construction_pattern(construction_pattern
const & other
);
14 ~construction_pattern();
16 construction_pattern
& operator=(construction_pattern
const & other
);