- Timestamp:
- 10/18/13 21:33:56 (11 years ago)
- Location:
- branches/HeuristicLab.Problems.GPDL/HeuristicLab.Grammars/3.3/Interfaces
- Files:
-
- 2 edited
Legend:
- Unmodified
- Added
- Removed
-
branches/HeuristicLab.Problems.GPDL/HeuristicLab.Grammars/3.3/Interfaces/IAttribute.cs
r10051 r10067 20 20 #endregion 21 21 22 using System; 23 22 24 namespace HeuristicLab.Grammars { 23 public enum AttributeType { In, Out, Ref }; 25 24 26 public interface IAttribute { 25 27 AttributeType AttributeType { get; } -
branches/HeuristicLab.Problems.GPDL/HeuristicLab.Grammars/3.3/Interfaces/ISymbol.cs
r10051 r10067 20 20 #endregion 21 21 22 using System.Collections.Generic; 23 22 24 namespace HeuristicLab.Grammars { 23 25 public interface ISymbol { 24 26 string Name { get; } 25 IAttribute Attribute { get; } 27 IEnumerable<IAttribute> Attributes { get; } 28 string GetAttributeString(); 26 29 } 27 30 }
Note: See TracChangeset
for help on using the changeset viewer.