completer_command.h 390 B

1234567891011
  1. #pragma once
  2. #include "modchooser.h"
  3. namespace NLastGetopt {
  4. /// Create an option that generates completion.
  5. TOpt MakeCompletionOpt(const TOpts* opts, TString command, TString optName = "completion");
  6. /// Create a mode that generates completion.
  7. THolder<TMainClassArgs> MakeCompletionMod(const TModChooser* modChooser, TString command, TString modName = "completion");
  8. }