diff options
Diffstat (limited to 'lib/infrastructure/reflection/ApplicationAssembly.cs')
| -rw-r--r-- | lib/infrastructure/reflection/ApplicationAssembly.cs | 40 |
1 files changed, 20 insertions, 20 deletions
diff --git a/lib/infrastructure/reflection/ApplicationAssembly.cs b/lib/infrastructure/reflection/ApplicationAssembly.cs index 9d19e11..5a69350 100644 --- a/lib/infrastructure/reflection/ApplicationAssembly.cs +++ b/lib/infrastructure/reflection/ApplicationAssembly.cs @@ -1,20 +1,20 @@ -using System;
-using System.Collections.Generic;
-
-namespace gorilla.infrastructure.reflection
-{
- public class ApplicationAssembly : Assembly
- {
- readonly System.Reflection.Assembly assembly;
-
- public ApplicationAssembly(System.Reflection.Assembly assembly)
- {
- this.assembly = assembly;
- }
-
- public IEnumerable<Type> all_types()
- {
- return assembly.GetTypes();
- }
- }
-}
\ No newline at end of file +using System; +using System.Collections.Generic; + +namespace jive.infrastructure.reflection +{ + public class ApplicationAssembly : Assembly + { + readonly System.Reflection.Assembly assembly; + + public ApplicationAssembly(System.Reflection.Assembly assembly) + { + this.assembly = assembly; + } + + public IEnumerable<Type> all_types() + { + return assembly.GetTypes(); + } + } +} |
