Skip to content
This repository has been archived by the owner on Apr 13, 2020. It is now read-only.

Commit

Permalink
Fixed typo / reorder pMixins region
Browse files Browse the repository at this point in the history
  • Loading branch information
philip pittle committed May 21, 2014
1 parent 89a53ae commit 4f35690
Showing 1 changed file with 14 additions and 13 deletions.
27 changes: 14 additions & 13 deletions pMixins.ItemTemplate/Class.cs
Original file line number Diff line number Diff line change
Expand Up @@ -15,21 +15,9 @@
* }
*
* //Target (Note: That it is partial) - Add members from Mixin
* [pMixn(Target = typeof(Mixin)]
* [pMixin(Mixin = typeof(Mixin)]
* public partial class Target{}
*
* //Code Generated by pMixins Code Generator
* //This is a simplified version of the generated code.
* public partial class Target
* {
* private Mixin _compositionInstance;
*
* public void Method()
* {
* // forward call to Mixin instance
* _compositionInstance.Method();
* }
* }
*
* //Example of using Target
* public class Consumer
Expand All @@ -46,6 +34,19 @@
* m.Method();
* }
* }
*
* //Code Generated by pMixins Code Generator
* //This is a simplified version of the generated code.
* //public partial class Target
* //{
* // private Mixin _compositionInstance;
* //
* // public void Method()
* // {
* // // forward call to Mixin instance
* // _compositionInstance.Method();
* // }
* //}
*/
#endregion

Expand Down

0 comments on commit 4f35690

Please sign in to comment.