Mercurial > pub > Impl
annotate lib/IMPL/Class/ClassBuilder.pm @ 425:c27434cdd611 ref20150831
sync
author | cin |
---|---|
date | Tue, 03 Apr 2018 19:30:01 +0300 |
parents | 60c2892a577c |
children |
rev | line source |
---|---|
423 | 1 package IMPL::Class::ClassBuilder; |
2 use strict; | |
3 | |
4 sub new { | |
5 my ($self, $class) = @_; | |
6 | |
7 return bless \$class, $self | |
8 } | |
9 | |
10 sub DefineProperty { | |
11 my ($self, $pi) = @_; | |
12 } | |
13 | |
14 sub DefineField { | |
15 | |
16 } | |
17 | |
18 sub DefineMethod { | |
19 | |
20 } | |
21 | |
425 | 22 sub DefineImport { |
23 | |
24 } | |
25 | |
423 | 26 1; |