00001 /** 00002 * @file class_with_interface.vb 00003 * <summary>example file demonstrating interfaces and classes</summary> 00004 * <remarks>detailed file description comes here<BR><BR> 00005 * The original unfiltered source of this file : <A HREF="http://trac.sevo.org/projects/doxyvb/browser/trunk/samples/DotNET/class_with_interface.vb">class_with_interface.vb</A></remarks> 00006 */ 00007 using System.IO; 00008 using System.Threading; 00009 using System.Runtime.Serialization; 00010 namespace Test_Doxygen { 00011 /** 00012 * <summary> 00013 * simple enumeration 00014 * </summary> 00015 * <remarks>description of the simple enumeration</remarks> 00016 */ 00017 public enum SampleEnum 00018 { 00019 Value1, /**< \brief first value */ 00020 /** 00021 * <summary> 00022 * second value 00023 * </summary> 00024 */ 00025 Value2, 00026 Value3 = 1234, /**< \brief third assigned value */ 00027 Value4 /**< \brief fourth value */ 00028 } 00029 /** 00030 * <summary> 00031 * sample interface 00032 * </summary> 00033 * <remarks>interface inherits IDisposable</remarks> 00034 */ 00035 public interface ISample 00036 : IDisposable 00037 { 00038
1.7.1