Commit 160e869d1e76697091cf977179e99fbb30c49cd6

Authored by Jay Berkenbilt
1 parent 558f043d

Mark trivial arg functions

Showing 1 changed file with 65 additions and 0 deletions
libqpdf/QPDFJob_argv.cc
@@ -216,12 +216,14 @@ ArgParser::argPasswordFile(char* parameter) @@ -216,12 +216,14 @@ ArgParser::argPasswordFile(char* parameter)
216 void 216 void
217 ArgParser::argEmpty() 217 ArgParser::argEmpty()
218 { 218 {
  219 + // QXXXQ @TRIVIAL
219 o.infilename = QUtil::make_shared_cstr(""); 220 o.infilename = QUtil::make_shared_cstr("");
220 } 221 }
221 222
222 void 223 void
223 ArgParser::argLinearize() 224 ArgParser::argLinearize()
224 { 225 {
  226 + // QXXXQ @TRIVIAL
225 o.linearize = true; 227 o.linearize = true;
226 } 228 }
227 229
@@ -286,6 +288,7 @@ ArgParser::argEncPositional(char* arg) @@ -286,6 +288,7 @@ ArgParser::argEncPositional(char* arg)
286 void 288 void
287 ArgParser::argDecrypt() 289 ArgParser::argDecrypt()
288 { 290 {
  291 + // QXXXQ @TRIVIAL
289 o.decrypt = true; 292 o.decrypt = true;
290 o.encrypt = false; 293 o.encrypt = false;
291 o.copy_encryption = false; 294 o.copy_encryption = false;
@@ -294,12 +297,14 @@ ArgParser::argDecrypt() @@ -294,12 +297,14 @@ ArgParser::argDecrypt()
294 void 297 void
295 ArgParser::argPasswordIsHexKey() 298 ArgParser::argPasswordIsHexKey()
296 { 299 {
  300 + // QXXXQ @TRIVIAL
297 o.password_is_hex_key = true; 301 o.password_is_hex_key = true;
298 } 302 }
299 303
300 void 304 void
301 ArgParser::argSuppressPasswordRecovery() 305 ArgParser::argSuppressPasswordRecovery()
302 { 306 {
  307 + // QXXXQ @TRIVIAL
303 o.suppress_password_recovery = true; 308 o.suppress_password_recovery = true;
304 } 309 }
305 310
@@ -337,12 +342,14 @@ ArgParser::argEnc256AllowInsecure() @@ -337,12 +342,14 @@ ArgParser::argEnc256AllowInsecure()
337 void 342 void
338 ArgParser::argAllowWeakCrypto() 343 ArgParser::argAllowWeakCrypto()
339 { 344 {
  345 + // QXXXQ @TRIVIAL
340 o.allow_weak_crypto = true; 346 o.allow_weak_crypto = true;
341 } 347 }
342 348
343 void 349 void
344 ArgParser::argCopyEncryption(char* parameter) 350 ArgParser::argCopyEncryption(char* parameter)
345 { 351 {
  352 + // QXXXQ @TRIVIAL
346 o.encryption_file = parameter; 353 o.encryption_file = parameter;
347 o.copy_encryption = true; 354 o.copy_encryption = true;
348 o.encrypt = false; 355 o.encrypt = false;
@@ -352,12 +359,14 @@ ArgParser::argCopyEncryption(char* parameter) @@ -352,12 +359,14 @@ ArgParser::argCopyEncryption(char* parameter)
352 void 359 void
353 ArgParser::argEncryptionFilePassword(char* parameter) 360 ArgParser::argEncryptionFilePassword(char* parameter)
354 { 361 {
  362 + // QXXXQ @TRIVIAL
355 o.encryption_file_password = QUtil::make_shared_cstr(parameter); 363 o.encryption_file_password = QUtil::make_shared_cstr(parameter);
356 } 364 }
357 365
358 void 366 void
359 ArgParser::argCollate(char* parameter) 367 ArgParser::argCollate(char* parameter)
360 { 368 {
  369 + // QXXXQ @TRIVIAL
361 auto n = ((parameter == 0) ? 1 : 370 auto n = ((parameter == 0) ? 1 :
362 QUtil::string_to_uint(parameter)); 371 QUtil::string_to_uint(parameter));
363 o.collate = QIntC::to_size(n); 372 o.collate = QIntC::to_size(n);
@@ -503,12 +512,14 @@ ArgParser::argRotate(char* parameter) @@ -503,12 +512,14 @@ ArgParser::argRotate(char* parameter)
503 void 512 void
504 ArgParser::argFlattenRotation() 513 ArgParser::argFlattenRotation()
505 { 514 {
  515 + // QXXXQ @TRIVIAL
506 o.flatten_rotation = true; 516 o.flatten_rotation = true;
507 } 517 }
508 518
509 void 519 void
510 ArgParser::argListAttachments() 520 ArgParser::argListAttachments()
511 { 521 {
  522 + // QXXXQ @TRIVIAL
512 o.list_attachments = true; 523 o.list_attachments = true;
513 o.require_outfile = false; 524 o.require_outfile = false;
514 } 525 }
@@ -516,6 +527,7 @@ ArgParser::argListAttachments() @@ -516,6 +527,7 @@ ArgParser::argListAttachments()
516 void 527 void
517 ArgParser::argShowAttachment(char* parameter) 528 ArgParser::argShowAttachment(char* parameter)
518 { 529 {
  530 + // QXXXQ @TRIVIAL
519 o.attachment_to_show = parameter; 531 o.attachment_to_show = parameter;
520 o.require_outfile = false; 532 o.require_outfile = false;
521 } 533 }
@@ -523,6 +535,7 @@ ArgParser::argShowAttachment(char* parameter) @@ -523,6 +535,7 @@ ArgParser::argShowAttachment(char* parameter)
523 void 535 void
524 ArgParser::argRemoveAttachment(char* parameter) 536 ArgParser::argRemoveAttachment(char* parameter)
525 { 537 {
  538 + // QXXXQ @TRIVIAL
526 o.attachments_to_remove.push_back(parameter); 539 o.attachments_to_remove.push_back(parameter);
527 } 540 }
528 541
@@ -567,6 +580,7 @@ ArgParser::argStreamData(char* parameter) @@ -567,6 +580,7 @@ ArgParser::argStreamData(char* parameter)
567 void 580 void
568 ArgParser::argCompressStreams(char* parameter) 581 ArgParser::argCompressStreams(char* parameter)
569 { 582 {
  583 + // QXXXQ @TRIVIAL
570 o.compress_streams_set = true; 584 o.compress_streams_set = true;
571 o.compress_streams = (strcmp(parameter, "y") == 0); 585 o.compress_streams = (strcmp(parameter, "y") == 0);
572 } 586 }
@@ -574,6 +588,7 @@ ArgParser::argCompressStreams(char* parameter) @@ -574,6 +588,7 @@ ArgParser::argCompressStreams(char* parameter)
574 void 588 void
575 ArgParser::argRecompressFlate() 589 ArgParser::argRecompressFlate()
576 { 590 {
  591 + // QXXXQ @TRIVIAL
577 o.recompress_flate_set = true; 592 o.recompress_flate_set = true;
578 o.recompress_flate = true; 593 o.recompress_flate = true;
579 } 594 }
@@ -581,6 +596,7 @@ ArgParser::argRecompressFlate() @@ -581,6 +596,7 @@ ArgParser::argRecompressFlate()
581 void 596 void
582 ArgParser::argCompressionLevel(char* parameter) 597 ArgParser::argCompressionLevel(char* parameter)
583 { 598 {
  599 + // QXXXQ @TRIVIAL
584 o.compression_level = QUtil::string_to_int(parameter); 600 o.compression_level = QUtil::string_to_int(parameter);
585 } 601 }
586 602
@@ -615,6 +631,7 @@ ArgParser::argDecodeLevel(char* parameter) @@ -615,6 +631,7 @@ ArgParser::argDecodeLevel(char* parameter)
615 void 631 void
616 ArgParser::argNormalizeContent(char* parameter) 632 ArgParser::argNormalizeContent(char* parameter)
617 { 633 {
  634 + // QXXXQ @TRIVIAL
618 o.normalize_set = true; 635 o.normalize_set = true;
619 o.normalize = (strcmp(parameter, "y") == 0); 636 o.normalize = (strcmp(parameter, "y") == 0);
620 } 637 }
@@ -622,6 +639,7 @@ ArgParser::argNormalizeContent(char* parameter) @@ -622,6 +639,7 @@ ArgParser::argNormalizeContent(char* parameter)
622 void 639 void
623 ArgParser::argSuppressRecovery() 640 ArgParser::argSuppressRecovery()
624 { 641 {
  642 + // QXXXQ @TRIVIAL
625 o.suppress_recovery = true; 643 o.suppress_recovery = true;
626 } 644 }
627 645
@@ -652,24 +670,28 @@ ArgParser::argObjectStreams(char* parameter) @@ -652,24 +670,28 @@ ArgParser::argObjectStreams(char* parameter)
652 void 670 void
653 ArgParser::argIgnoreXrefStreams() 671 ArgParser::argIgnoreXrefStreams()
654 { 672 {
  673 + // QXXXQ @TRIVIAL
655 o.ignore_xref_streams = true; 674 o.ignore_xref_streams = true;
656 } 675 }
657 676
658 void 677 void
659 ArgParser::argQdf() 678 ArgParser::argQdf()
660 { 679 {
  680 + // QXXXQ @TRIVIAL
661 o.qdf_mode = true; 681 o.qdf_mode = true;
662 } 682 }
663 683
664 void 684 void
665 ArgParser::argPreserveUnreferenced() 685 ArgParser::argPreserveUnreferenced()
666 { 686 {
  687 + // QXXXQ @TRIVIAL
667 o.preserve_unreferenced_objects = true; 688 o.preserve_unreferenced_objects = true;
668 } 689 }
669 690
670 void 691 void
671 ArgParser::argPreserveUnreferencedResources() 692 ArgParser::argPreserveUnreferencedResources()
672 { 693 {
  694 + // QXXXQ @TRIVIAL
673 o.remove_unreferenced_page_resources = QPDFJob::re_no; 695 o.remove_unreferenced_page_resources = QPDFJob::re_no;
674 } 696 }
675 697
@@ -699,6 +721,7 @@ ArgParser::argRemoveUnreferencedResources(char* parameter) @@ -699,6 +721,7 @@ ArgParser::argRemoveUnreferencedResources(char* parameter)
699 void 721 void
700 ArgParser::argKeepFilesOpen(char* parameter) 722 ArgParser::argKeepFilesOpen(char* parameter)
701 { 723 {
  724 + // QXXXQ @TRIVIAL
702 o.keep_files_open_set = true; 725 o.keep_files_open_set = true;
703 o.keep_files_open = (strcmp(parameter, "y") == 0); 726 o.keep_files_open = (strcmp(parameter, "y") == 0);
704 } 727 }
@@ -706,30 +729,35 @@ ArgParser::argKeepFilesOpen(char* parameter) @@ -706,30 +729,35 @@ ArgParser::argKeepFilesOpen(char* parameter)
706 void 729 void
707 ArgParser::argKeepFilesOpenThreshold(char* parameter) 730 ArgParser::argKeepFilesOpenThreshold(char* parameter)
708 { 731 {
  732 + // QXXXQ @TRIVIAL
709 o.keep_files_open_threshold = QUtil::string_to_uint(parameter); 733 o.keep_files_open_threshold = QUtil::string_to_uint(parameter);
710 } 734 }
711 735
712 void 736 void
713 ArgParser::argNewlineBeforeEndstream() 737 ArgParser::argNewlineBeforeEndstream()
714 { 738 {
  739 + // QXXXQ @TRIVIAL
715 o.newline_before_endstream = true; 740 o.newline_before_endstream = true;
716 } 741 }
717 742
718 void 743 void
719 ArgParser::argLinearizePass1(char* parameter) 744 ArgParser::argLinearizePass1(char* parameter)
720 { 745 {
  746 + // QXXXQ @TRIVIAL
721 o.linearize_pass1 = parameter; 747 o.linearize_pass1 = parameter;
722 } 748 }
723 749
724 void 750 void
725 ArgParser::argCoalesceContents() 751 ArgParser::argCoalesceContents()
726 { 752 {
  753 + // QXXXQ @TRIVIAL
727 o.coalesce_contents = true; 754 o.coalesce_contents = true;
728 } 755 }
729 756
730 void 757 void
731 ArgParser::argFlattenAnnotations(char* parameter) 758 ArgParser::argFlattenAnnotations(char* parameter)
732 { 759 {
  760 + // QXXXQ @TRIVIAL
733 o.flatten_annotations = true; 761 o.flatten_annotations = true;
734 if (strcmp(parameter, "screen") == 0) 762 if (strcmp(parameter, "screen") == 0)
735 { 763 {
@@ -744,24 +772,28 @@ ArgParser::argFlattenAnnotations(char* parameter) @@ -744,24 +772,28 @@ ArgParser::argFlattenAnnotations(char* parameter)
744 void 772 void
745 ArgParser::argGenerateAppearances() 773 ArgParser::argGenerateAppearances()
746 { 774 {
  775 + // QXXXQ @TRIVIAL
747 o.generate_appearances = true; 776 o.generate_appearances = true;
748 } 777 }
749 778
750 void 779 void
751 ArgParser::argMinVersion(char* parameter) 780 ArgParser::argMinVersion(char* parameter)
752 { 781 {
  782 + // QXXXQ @TRIVIAL
753 o.min_version = parameter; 783 o.min_version = parameter;
754 } 784 }
755 785
756 void 786 void
757 ArgParser::argForceVersion(char* parameter) 787 ArgParser::argForceVersion(char* parameter)
758 { 788 {
  789 + // QXXXQ @TRIVIAL
759 o.force_version = parameter; 790 o.force_version = parameter;
760 } 791 }
761 792
762 void 793 void
763 ArgParser::argSplitPages(char* parameter) 794 ArgParser::argSplitPages(char* parameter)
764 { 795 {
  796 + // QXXXQ @TRIVIAL
765 int n = ((parameter == 0) ? 1 : 797 int n = ((parameter == 0) ? 1 :
766 QUtil::string_to_int(parameter)); 798 QUtil::string_to_int(parameter));
767 o.split_pages = n; 799 o.split_pages = n;
@@ -770,54 +802,63 @@ ArgParser::argSplitPages(char* parameter) @@ -770,54 +802,63 @@ ArgParser::argSplitPages(char* parameter)
770 void 802 void
771 ArgParser::argVerbose() 803 ArgParser::argVerbose()
772 { 804 {
  805 + // QXXXQ @TRIVIAL
773 o.verbose = true; 806 o.verbose = true;
774 } 807 }
775 808
776 void 809 void
777 ArgParser::argProgress() 810 ArgParser::argProgress()
778 { 811 {
  812 + // QXXXQ @TRIVIAL
779 o.progress = true; 813 o.progress = true;
780 } 814 }
781 815
782 void 816 void
783 ArgParser::argNoWarn() 817 ArgParser::argNoWarn()
784 { 818 {
  819 + // QXXXQ @TRIVIAL
785 o.suppress_warnings = true; 820 o.suppress_warnings = true;
786 } 821 }
787 822
788 void 823 void
789 ArgParser::argWarningExit0() 824 ArgParser::argWarningExit0()
790 { 825 {
  826 + // QXXXQ @TRIVIAL
791 o.warnings_exit_zero = true; 827 o.warnings_exit_zero = true;
792 } 828 }
793 829
794 void 830 void
795 ArgParser::argDeterministicId() 831 ArgParser::argDeterministicId()
796 { 832 {
  833 + // QXXXQ @TRIVIAL
797 o.deterministic_id = true; 834 o.deterministic_id = true;
798 } 835 }
799 836
800 void 837 void
801 ArgParser::argStaticId() 838 ArgParser::argStaticId()
802 { 839 {
  840 + // QXXXQ @TRIVIAL
803 o.static_id = true; 841 o.static_id = true;
804 } 842 }
805 843
806 void 844 void
807 ArgParser::argStaticAesIv() 845 ArgParser::argStaticAesIv()
808 { 846 {
  847 + // QXXXQ @TRIVIAL
809 o.static_aes_iv = true; 848 o.static_aes_iv = true;
810 } 849 }
811 850
812 void 851 void
813 ArgParser::argNoOriginalObjectIds() 852 ArgParser::argNoOriginalObjectIds()
814 { 853 {
  854 + // QXXXQ @TRIVIAL
815 o.suppress_original_object_id = true; 855 o.suppress_original_object_id = true;
816 } 856 }
817 857
818 void 858 void
819 ArgParser::argShowEncryption() 859 ArgParser::argShowEncryption()
820 { 860 {
  861 + // QXXXQ @TRIVIAL
821 o.show_encryption = true; 862 o.show_encryption = true;
822 o.require_outfile = false; 863 o.require_outfile = false;
823 } 864 }
@@ -825,12 +866,14 @@ ArgParser::argShowEncryption() @@ -825,12 +866,14 @@ ArgParser::argShowEncryption()
825 void 866 void
826 ArgParser::argShowEncryptionKey() 867 ArgParser::argShowEncryptionKey()
827 { 868 {
  869 + // QXXXQ @TRIVIAL
828 o.show_encryption_key = true; 870 o.show_encryption_key = true;
829 } 871 }
830 872
831 void 873 void
832 ArgParser::argCheckLinearization() 874 ArgParser::argCheckLinearization()
833 { 875 {
  876 + // QXXXQ @TRIVIAL
834 o.check_linearization = true; 877 o.check_linearization = true;
835 o.require_outfile = false; 878 o.require_outfile = false;
836 } 879 }
@@ -838,6 +881,7 @@ ArgParser::argCheckLinearization() @@ -838,6 +881,7 @@ ArgParser::argCheckLinearization()
838 void 881 void
839 ArgParser::argShowLinearization() 882 ArgParser::argShowLinearization()
840 { 883 {
  884 + // QXXXQ @TRIVIAL
841 o.show_linearization = true; 885 o.show_linearization = true;
842 o.require_outfile = false; 886 o.require_outfile = false;
843 } 887 }
@@ -845,6 +889,7 @@ ArgParser::argShowLinearization() @@ -845,6 +889,7 @@ ArgParser::argShowLinearization()
845 void 889 void
846 ArgParser::argShowXref() 890 ArgParser::argShowXref()
847 { 891 {
  892 + // QXXXQ @TRIVIAL
848 o.show_xref = true; 893 o.show_xref = true;
849 o.require_outfile = false; 894 o.require_outfile = false;
850 } 895 }
@@ -859,18 +904,21 @@ ArgParser::argShowObject(char* parameter) @@ -859,18 +904,21 @@ ArgParser::argShowObject(char* parameter)
859 void 904 void
860 ArgParser::argRawStreamData() 905 ArgParser::argRawStreamData()
861 { 906 {
  907 + // QXXXQ @TRIVIAL
862 o.show_raw_stream_data = true; 908 o.show_raw_stream_data = true;
863 } 909 }
864 910
865 void 911 void
866 ArgParser::argFilteredStreamData() 912 ArgParser::argFilteredStreamData()
867 { 913 {
  914 + // QXXXQ @TRIVIAL
868 o.show_filtered_stream_data = true; 915 o.show_filtered_stream_data = true;
869 } 916 }
870 917
871 void 918 void
872 ArgParser::argShowNpages() 919 ArgParser::argShowNpages()
873 { 920 {
  921 + // QXXXQ @TRIVIAL
874 o.show_npages = true; 922 o.show_npages = true;
875 o.require_outfile = false; 923 o.require_outfile = false;
876 } 924 }
@@ -878,6 +926,7 @@ ArgParser::argShowNpages() @@ -878,6 +926,7 @@ ArgParser::argShowNpages()
878 void 926 void
879 ArgParser::argShowPages() 927 ArgParser::argShowPages()
880 { 928 {
  929 + // QXXXQ @TRIVIAL
881 o.show_pages = true; 930 o.show_pages = true;
882 o.require_outfile = false; 931 o.require_outfile = false;
883 } 932 }
@@ -885,12 +934,14 @@ ArgParser::argShowPages() @@ -885,12 +934,14 @@ ArgParser::argShowPages()
885 void 934 void
886 ArgParser::argWithImages() 935 ArgParser::argWithImages()
887 { 936 {
  937 + // QXXXQ @TRIVIAL
888 o.show_page_images = true; 938 o.show_page_images = true;
889 } 939 }
890 940
891 void 941 void
892 ArgParser::argJson() 942 ArgParser::argJson()
893 { 943 {
  944 + // QXXXQ @TRIVIAL
894 o.json = true; 945 o.json = true;
895 o.require_outfile = false; 946 o.require_outfile = false;
896 } 947 }
@@ -898,18 +949,21 @@ ArgParser::argJson() @@ -898,18 +949,21 @@ ArgParser::argJson()
898 void 949 void
899 ArgParser::argJsonKey(char* parameter) 950 ArgParser::argJsonKey(char* parameter)
900 { 951 {
  952 + // QXXXQ @TRIVIAL
901 o.json_keys.insert(parameter); 953 o.json_keys.insert(parameter);
902 } 954 }
903 955
904 void 956 void
905 ArgParser::argJsonObject(char* parameter) 957 ArgParser::argJsonObject(char* parameter)
906 { 958 {
  959 + // QXXXQ @TRIVIAL
907 o.json_objects.insert(parameter); 960 o.json_objects.insert(parameter);
908 } 961 }
909 962
910 void 963 void
911 ArgParser::argCheck() 964 ArgParser::argCheck()
912 { 965 {
  966 + // QXXXQ @TRIVIAL
913 o.check = true; 967 o.check = true;
914 o.require_outfile = false; 968 o.require_outfile = false;
915 } 969 }
@@ -917,48 +971,56 @@ ArgParser::argCheck() @@ -917,48 +971,56 @@ ArgParser::argCheck()
917 void 971 void
918 ArgParser::argOptimizeImages() 972 ArgParser::argOptimizeImages()
919 { 973 {
  974 + // QXXXQ @TRIVIAL
920 o.optimize_images = true; 975 o.optimize_images = true;
921 } 976 }
922 977
923 void 978 void
924 ArgParser::argExternalizeInlineImages() 979 ArgParser::argExternalizeInlineImages()
925 { 980 {
  981 + // QXXXQ @TRIVIAL
926 o.externalize_inline_images = true; 982 o.externalize_inline_images = true;
927 } 983 }
928 984
929 void 985 void
930 ArgParser::argKeepInlineImages() 986 ArgParser::argKeepInlineImages()
931 { 987 {
  988 + // QXXXQ @TRIVIAL
932 o.keep_inline_images = true; 989 o.keep_inline_images = true;
933 } 990 }
934 991
935 void 992 void
936 ArgParser::argRemovePageLabels() 993 ArgParser::argRemovePageLabels()
937 { 994 {
  995 + // QXXXQ @TRIVIAL
938 o.remove_page_labels = true; 996 o.remove_page_labels = true;
939 } 997 }
940 998
941 void 999 void
942 ArgParser::argOiMinWidth(char* parameter) 1000 ArgParser::argOiMinWidth(char* parameter)
943 { 1001 {
  1002 + // QXXXQ @TRIVIAL
944 o.oi_min_width = QUtil::string_to_uint(parameter); 1003 o.oi_min_width = QUtil::string_to_uint(parameter);
945 } 1004 }
946 1005
947 void 1006 void
948 ArgParser::argOiMinHeight(char* parameter) 1007 ArgParser::argOiMinHeight(char* parameter)
949 { 1008 {
  1009 + // QXXXQ @TRIVIAL
950 o.oi_min_height = QUtil::string_to_uint(parameter); 1010 o.oi_min_height = QUtil::string_to_uint(parameter);
951 } 1011 }
952 1012
953 void 1013 void
954 ArgParser::argOiMinArea(char* parameter) 1014 ArgParser::argOiMinArea(char* parameter)
955 { 1015 {
  1016 + // QXXXQ @TRIVIAL
956 o.oi_min_area = QUtil::string_to_uint(parameter); 1017 o.oi_min_area = QUtil::string_to_uint(parameter);
957 } 1018 }
958 1019
959 void 1020 void
960 ArgParser::argIiMinBytes(char* parameter) 1021 ArgParser::argIiMinBytes(char* parameter)
961 { 1022 {
  1023 + // QXXXQ @TRIVIAL
962 o.ii_min_bytes = QUtil::string_to_uint(parameter); 1024 o.ii_min_bytes = QUtil::string_to_uint(parameter);
963 } 1025 }
964 1026
@@ -1196,12 +1258,14 @@ ArgParser::argEndUnderlayOverlay() @@ -1196,12 +1258,14 @@ ArgParser::argEndUnderlayOverlay()
1196 void 1258 void
1197 ArgParser::argReplaceInput() 1259 ArgParser::argReplaceInput()
1198 { 1260 {
  1261 + // QXXXQ @TRIVIAL
1199 o.replace_input = true; 1262 o.replace_input = true;
1200 } 1263 }
1201 1264
1202 void 1265 void
1203 ArgParser::argIsEncrypted() 1266 ArgParser::argIsEncrypted()
1204 { 1267 {
  1268 + // QXXXQ @TRIVIAL
1205 o.check_is_encrypted = true; 1269 o.check_is_encrypted = true;
1206 o.require_outfile = false; 1270 o.require_outfile = false;
1207 } 1271 }
@@ -1209,6 +1273,7 @@ ArgParser::argIsEncrypted() @@ -1209,6 +1273,7 @@ ArgParser::argIsEncrypted()
1209 void 1273 void
1210 ArgParser::argRequiresPassword() 1274 ArgParser::argRequiresPassword()
1211 { 1275 {
  1276 + // QXXXQ @TRIVIAL
1212 o.check_requires_password = true; 1277 o.check_requires_password = true;
1213 o.require_outfile = false; 1278 o.require_outfile = false;
1214 } 1279 }