Implemented the one-liner operators ` ( )
[fridhskrift.git] / fridh / construction.hpp
blobf8dbe3f17cf46fcd411972d9deb08c964b9b39f6
1 #pragma once
3 #include <ail/exception.hpp>
5 namespace fridh
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);