Sophie

Sophie

distrib > Mageia > 6 > x86_64 > media > core-updates > by-pkgid > d3c732bcddee997381ae7599db6439ca > files > 2067

boost-examples-1.60.0-6.1.mga6.noarch.rpm

using System;
using System.Collections.Generic;
using System.Windows.Forms;

namespace distribution_explorer
{
    static class Program
    {
        /// <summary>
        /// The main entry point for the application.
        /// </summary>
        [STAThread]
        static void Main()
        {
            Application.EnableVisualStyles();
            Application.SetCompatibleTextRenderingDefault(false);
            Application.Run(new DistexForm());
        }
    }
}