Make Gst.Version a static class
authorSebastian Dröge <sebastian.droege@collabora.co.uk>
Tue, 7 Apr 2009 08:31:03 +0000 (10:31 +0200)
committerSebastian Dröge <sebastian.droege@collabora.co.uk>
Tue, 7 Apr 2009 08:31:03 +0000 (10:31 +0200)
gstreamer-sharp/Application.cs
gstreamer-sharp/Version.cs

index 71052b4..8172480 100644 (file)
@@ -77,18 +77,6 @@ namespace Gst
             }
         }
         
-        private static Version version = null;
-        
-        public static Version Version {
-            get {
-                if(version == null) {
-                    version = new Version();
-                }
-                
-                return version;
-            }
-        }
-        
         [DllImport("gstreamer-0.10")]
         private static extern void gst_init(ref int argc, ref IntPtr argv);
 
index e62c605..1169c47 100644 (file)
@@ -12,27 +12,22 @@ using System.Runtime.InteropServices;
 
 namespace Gst 
 {
-    public class Version
+    public static class Version
     {
-        private uint major;
-        private uint minor;
-        private uint micro;
-        private uint nano;
-        private string version_string;
+        private static uint major;
+        private static uint minor;
+        private static uint micro;
+        private static uint nano;
+        private static string version_string;
     
-        internal Version()
+        static Version()
         {
             gst_version(out major, out minor, out micro, out nano);
         }
         
-        public override string ToString()
-        {
-            return String.Format("{0}.{1}.{2}.{3}", major, minor, micro, nano);
-        }
-        
-        public string Description {
+        public static string Description {
             get {
-                if(version_string == null) {
+                if (version_string == null) {
                     IntPtr version_string_ptr = gst_version_string();
                     version_string = GLib.Marshaller.Utf8PtrToString(version_string_ptr);
                 }
@@ -41,19 +36,19 @@ namespace Gst
             }
         }
         
-        public uint Major {
+        public static uint Major {
             get { return major; }
         }
         
-        public uint Minor {
+        public static uint Minor {
             get { return minor; }
         }
         
-        public uint Micro {
+        public static uint Micro {
             get { return micro; }
         }
         
-        public uint Nano {
+        public static uint Nano {
             get { return nano; }
         }
         
@@ -63,4 +58,4 @@ namespace Gst
         [DllImport("gstreamer-0.10")]
         private static extern IntPtr gst_version_string();
     }
-}
\ No newline at end of file
+}