00001 /* ---------------------------------------------------------------------------- 00002 * Microsoft Corporation 00003 * ---------------------------------------------------------------------------- 00004 * Microsoft Project Server mpFx (mpFx) 00005 * ---------------------------------------------------------------------------- 00006 * Author: Colby Africa 00007 * ---------------------------------------------------------------------------- 00008 * License: http://code.msdn.microsoft.com/mpFx/Project/License.aspx 00009 * ---------------------------------------------------------------------------- 00010 */ 00011 00012 using System.Windows.Forms; 00013 using Mcs.Epm.MicrosoftProject.mpFx.Client.Shared; 00014 00015 namespace Mcs.Epm.MicrosoftProject.mpFx.Client.Plugins.QueueManagerPlugin.Controls 00016 { 00017 /// <summary> 00018 /// Implements the options control for the Queue Manager Plugin 00019 /// </summary> 00020 public partial class OptionsControl : UserControl, IOptionsControl 00021 { 00022 #region Constructors 00023 00024 public OptionsControl() 00025 { 00026 InitializeComponent(); 00027 } 00028 00029 #endregion 00030 00031 #region IOptionsControl Members 00032 00033 public void SaveSettings() 00034 { 00035 00036 } 00037 00038 #endregion 00039 00040 } 00041 }
1.5.8