Advertisement
Guest User

Untitled

a guest
Feb 25th, 2020
91
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
C# 0.78 KB | None | 0 0
  1. using CMDParser.Options;
  2. using System;
  3.  
  4. namespace CMDParser
  5. {
  6.     internal static class ParsableFactory
  7.     {
  8.         public static IParsable CreateShortOption(char identifier, Appearance optionAppearance, ArgumentAppearance argumentAppearance)
  9.         {
  10.             throw new NotImplementedException();
  11.         }
  12.  
  13.         public static IParsable CreateLongOption(string identifier, Appearance optionAppearance, ArgumentAppearance argumentAppearance)
  14.         {
  15.             throw new NotImplementedException();
  16.         }
  17.  
  18.         public static IParsable CreateArbitraryArgument(string identifier, Appearance argumentAppearance)
  19.         {
  20.             throw new NotImplementedException();
  21.         }
  22.  
  23.         public static IParsable CreateArbitraryArgumentCollection(string identifier, int lowerBound, int upperBound)
  24.         {
  25.             throw new NotImplementedException();
  26.         }
  27.     }
  28. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement