-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathdebugfile.out
More file actions
1030 lines (1030 loc) · 250 KB
/
debugfile.out
File metadata and controls
1030 lines (1030 loc) · 250 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
978
979
980
981
982
983
984
985
986
987
988
989
990
991
992
993
994
995
996
997
998
999
1000
2025-08-19 13:53:58.4501776 UTC: D:\etmbms\vsprojects\profcppbook\ch31.ixx(150): void __cdecl ch31::exercises::ex4::test(int,char **): Argument: D:\etmbms\vsprojects\profcppbook\x64\Debug\profcppbook.exe
2025-08-19 13:53:58.4524472 UTC: D:\etmbms\vsprojects\profcppbook\ch31.ixx(150): void __cdecl ch31::exercises::ex4::test(int,char **): Argument: -d
2025-08-19 13:53:58.4528570 UTC: D:\etmbms\vsprojects\profcppbook\ch31.ixx(128): void __cdecl ch31::exercises::ex4::trickyFunction(class ch31::exercises::ex4::ComplicatedClass *): given argument: ComplicatedClass
2025-08-19 13:53:58.4533060 UTC: D:\etmbms\vsprojects\profcppbook\ch31.ixx(132): void __cdecl ch31::exercises::ex4::trickyFunction(class ch31::exercises::ex4::ComplicatedClass *): retrieved cmd 0: UserCommand
2025-08-19 13:53:58.4541732 UTC: D:\etmbms\vsprojects\profcppbook\ch31.ixx(132): void __cdecl ch31::exercises::ex4::trickyFunction(class ch31::exercises::ex4::ComplicatedClass *): retrieved cmd 1: UserCommand
2025-08-19 13:53:58.4546872 UTC: D:\etmbms\vsprojects\profcppbook\ch31.ixx(132): void __cdecl ch31::exercises::ex4::trickyFunction(class ch31::exercises::ex4::ComplicatedClass *): retrieved cmd 2: UserCommand
2025-08-19 13:53:58.4550846 UTC: D:\etmbms\vsprojects\profcppbook\ch31.ixx(132): void __cdecl ch31::exercises::ex4::trickyFunction(class ch31::exercises::ex4::ComplicatedClass *): retrieved cmd 3: UserCommand
2025-08-19 13:53:58.4554622 UTC: D:\etmbms\vsprojects\profcppbook\ch31.ixx(132): void __cdecl ch31::exercises::ex4::trickyFunction(class ch31::exercises::ex4::ComplicatedClass *): retrieved cmd 4: UserCommand
2025-08-19 13:53:58.4558602 UTC: D:\etmbms\vsprojects\profcppbook\ch31.ixx(132): void __cdecl ch31::exercises::ex4::trickyFunction(class ch31::exercises::ex4::ComplicatedClass *): retrieved cmd 5: UserCommand
2025-08-19 13:53:58.4562381 UTC: D:\etmbms\vsprojects\profcppbook\ch31.ixx(132): void __cdecl ch31::exercises::ex4::trickyFunction(class ch31::exercises::ex4::ComplicatedClass *): retrieved cmd 6: UserCommand
2025-08-19 13:53:58.4566206 UTC: D:\etmbms\vsprojects\profcppbook\ch31.ixx(132): void __cdecl ch31::exercises::ex4::trickyFunction(class ch31::exercises::ex4::ComplicatedClass *): retrieved cmd 7: UserCommand
2025-08-19 13:53:58.4570180 UTC: D:\etmbms\vsprojects\profcppbook\ch31.ixx(132): void __cdecl ch31::exercises::ex4::trickyFunction(class ch31::exercises::ex4::ComplicatedClass *): retrieved cmd 8: UserCommand
2025-08-19 13:53:58.4574041 UTC: D:\etmbms\vsprojects\profcppbook\ch31.ixx(132): void __cdecl ch31::exercises::ex4::trickyFunction(class ch31::exercises::ex4::ComplicatedClass *): retrieved cmd 9: UserCommand
2025-08-19 13:53:58.4577769 UTC: D:\etmbms\vsprojects\profcppbook\ch31.ixx(132): void __cdecl ch31::exercises::ex4::trickyFunction(class ch31::exercises::ex4::ComplicatedClass *): retrieved cmd 10: UserCommand
2025-08-19 13:53:58.4581454 UTC: D:\etmbms\vsprojects\profcppbook\ch31.ixx(132): void __cdecl ch31::exercises::ex4::trickyFunction(class ch31::exercises::ex4::ComplicatedClass *): retrieved cmd 11: UserCommand
2025-08-19 13:53:58.4585116 UTC: D:\etmbms\vsprojects\profcppbook\ch31.ixx(132): void __cdecl ch31::exercises::ex4::trickyFunction(class ch31::exercises::ex4::ComplicatedClass *): retrieved cmd 12: UserCommand
2025-08-19 13:53:58.4588812 UTC: D:\etmbms\vsprojects\profcppbook\ch31.ixx(132): void __cdecl ch31::exercises::ex4::trickyFunction(class ch31::exercises::ex4::ComplicatedClass *): retrieved cmd 13: UserCommand
2025-08-19 13:53:58.4592309 UTC: D:\etmbms\vsprojects\profcppbook\ch31.ixx(132): void __cdecl ch31::exercises::ex4::trickyFunction(class ch31::exercises::ex4::ComplicatedClass *): retrieved cmd 14: UserCommand
2025-08-19 13:53:58.4595917 UTC: D:\etmbms\vsprojects\profcppbook\ch31.ixx(132): void __cdecl ch31::exercises::ex4::trickyFunction(class ch31::exercises::ex4::ComplicatedClass *): retrieved cmd 15: UserCommand
2025-08-19 13:53:58.4599687 UTC: D:\etmbms\vsprojects\profcppbook\ch31.ixx(132): void __cdecl ch31::exercises::ex4::trickyFunction(class ch31::exercises::ex4::ComplicatedClass *): retrieved cmd 16: UserCommand
2025-08-19 13:53:58.4603596 UTC: D:\etmbms\vsprojects\profcppbook\ch31.ixx(132): void __cdecl ch31::exercises::ex4::trickyFunction(class ch31::exercises::ex4::ComplicatedClass *): retrieved cmd 17: UserCommand
2025-08-19 13:53:58.4607585 UTC: D:\etmbms\vsprojects\profcppbook\ch31.ixx(132): void __cdecl ch31::exercises::ex4::trickyFunction(class ch31::exercises::ex4::ComplicatedClass *): retrieved cmd 18: UserCommand
2025-08-19 13:53:58.4611800 UTC: D:\etmbms\vsprojects\profcppbook\ch31.ixx(132): void __cdecl ch31::exercises::ex4::trickyFunction(class ch31::exercises::ex4::ComplicatedClass *): retrieved cmd 19: UserCommand
2025-08-19 13:53:58.4615949 UTC: D:\etmbms\vsprojects\profcppbook\ch31.ixx(132): void __cdecl ch31::exercises::ex4::trickyFunction(class ch31::exercises::ex4::ComplicatedClass *): retrieved cmd 20: UserCommand
2025-08-19 13:53:58.4619795 UTC: D:\etmbms\vsprojects\profcppbook\ch31.ixx(132): void __cdecl ch31::exercises::ex4::trickyFunction(class ch31::exercises::ex4::ComplicatedClass *): retrieved cmd 21: UserCommand
2025-08-19 13:53:58.4623599 UTC: D:\etmbms\vsprojects\profcppbook\ch31.ixx(132): void __cdecl ch31::exercises::ex4::trickyFunction(class ch31::exercises::ex4::ComplicatedClass *): retrieved cmd 22: UserCommand
2025-08-19 13:53:58.4627617 UTC: D:\etmbms\vsprojects\profcppbook\ch31.ixx(132): void __cdecl ch31::exercises::ex4::trickyFunction(class ch31::exercises::ex4::ComplicatedClass *): retrieved cmd 23: UserCommand
2025-08-19 13:53:58.4631780 UTC: D:\etmbms\vsprojects\profcppbook\ch31.ixx(132): void __cdecl ch31::exercises::ex4::trickyFunction(class ch31::exercises::ex4::ComplicatedClass *): retrieved cmd 24: UserCommand
2025-08-19 13:53:58.4635842 UTC: D:\etmbms\vsprojects\profcppbook\ch31.ixx(132): void __cdecl ch31::exercises::ex4::trickyFunction(class ch31::exercises::ex4::ComplicatedClass *): retrieved cmd 25: UserCommand
2025-08-19 13:53:58.4639785 UTC: D:\etmbms\vsprojects\profcppbook\ch31.ixx(132): void __cdecl ch31::exercises::ex4::trickyFunction(class ch31::exercises::ex4::ComplicatedClass *): retrieved cmd 26: UserCommand
2025-08-19 13:53:58.4643697 UTC: D:\etmbms\vsprojects\profcppbook\ch31.ixx(132): void __cdecl ch31::exercises::ex4::trickyFunction(class ch31::exercises::ex4::ComplicatedClass *): retrieved cmd 27: UserCommand
2025-08-19 13:53:58.4647927 UTC: D:\etmbms\vsprojects\profcppbook\ch31.ixx(132): void __cdecl ch31::exercises::ex4::trickyFunction(class ch31::exercises::ex4::ComplicatedClass *): retrieved cmd 28: UserCommand
2025-08-19 13:53:58.4652907 UTC: D:\etmbms\vsprojects\profcppbook\ch31.ixx(132): void __cdecl ch31::exercises::ex4::trickyFunction(class ch31::exercises::ex4::ComplicatedClass *): retrieved cmd 29: UserCommand
2025-08-19 13:53:58.4657503 UTC: D:\etmbms\vsprojects\profcppbook\ch31.ixx(132): void __cdecl ch31::exercises::ex4::trickyFunction(class ch31::exercises::ex4::ComplicatedClass *): retrieved cmd 30: UserCommand
2025-08-19 13:53:58.4661798 UTC: D:\etmbms\vsprojects\profcppbook\ch31.ixx(132): void __cdecl ch31::exercises::ex4::trickyFunction(class ch31::exercises::ex4::ComplicatedClass *): retrieved cmd 31: UserCommand
2025-08-19 13:53:58.4665766 UTC: D:\etmbms\vsprojects\profcppbook\ch31.ixx(132): void __cdecl ch31::exercises::ex4::trickyFunction(class ch31::exercises::ex4::ComplicatedClass *): retrieved cmd 32: UserCommand
2025-08-19 13:53:58.4669821 UTC: D:\etmbms\vsprojects\profcppbook\ch31.ixx(132): void __cdecl ch31::exercises::ex4::trickyFunction(class ch31::exercises::ex4::ComplicatedClass *): retrieved cmd 33: UserCommand
2025-08-19 13:53:58.4673638 UTC: D:\etmbms\vsprojects\profcppbook\ch31.ixx(132): void __cdecl ch31::exercises::ex4::trickyFunction(class ch31::exercises::ex4::ComplicatedClass *): retrieved cmd 34: UserCommand
2025-08-19 13:53:58.4677528 UTC: D:\etmbms\vsprojects\profcppbook\ch31.ixx(132): void __cdecl ch31::exercises::ex4::trickyFunction(class ch31::exercises::ex4::ComplicatedClass *): retrieved cmd 35: UserCommand
2025-08-19 13:53:58.4681699 UTC: D:\etmbms\vsprojects\profcppbook\ch31.ixx(132): void __cdecl ch31::exercises::ex4::trickyFunction(class ch31::exercises::ex4::ComplicatedClass *): retrieved cmd 36: UserCommand
2025-08-19 13:53:58.4685987 UTC: D:\etmbms\vsprojects\profcppbook\ch31.ixx(132): void __cdecl ch31::exercises::ex4::trickyFunction(class ch31::exercises::ex4::ComplicatedClass *): retrieved cmd 37: UserCommand
2025-08-19 13:53:58.4689961 UTC: D:\etmbms\vsprojects\profcppbook\ch31.ixx(132): void __cdecl ch31::exercises::ex4::trickyFunction(class ch31::exercises::ex4::ComplicatedClass *): retrieved cmd 38: UserCommand
2025-08-19 13:53:58.4694129 UTC: D:\etmbms\vsprojects\profcppbook\ch31.ixx(132): void __cdecl ch31::exercises::ex4::trickyFunction(class ch31::exercises::ex4::ComplicatedClass *): retrieved cmd 39: UserCommand
2025-08-19 13:53:58.4698127 UTC: D:\etmbms\vsprojects\profcppbook\ch31.ixx(132): void __cdecl ch31::exercises::ex4::trickyFunction(class ch31::exercises::ex4::ComplicatedClass *): retrieved cmd 40: UserCommand
2025-08-19 13:53:58.4702289 UTC: D:\etmbms\vsprojects\profcppbook\ch31.ixx(132): void __cdecl ch31::exercises::ex4::trickyFunction(class ch31::exercises::ex4::ComplicatedClass *): retrieved cmd 41: UserCommand
2025-08-19 13:53:58.4706513 UTC: D:\etmbms\vsprojects\profcppbook\ch31.ixx(132): void __cdecl ch31::exercises::ex4::trickyFunction(class ch31::exercises::ex4::ComplicatedClass *): retrieved cmd 42: UserCommand
2025-08-19 13:53:58.4710530 UTC: D:\etmbms\vsprojects\profcppbook\ch31.ixx(132): void __cdecl ch31::exercises::ex4::trickyFunction(class ch31::exercises::ex4::ComplicatedClass *): retrieved cmd 43: UserCommand
2025-08-19 13:53:58.4714510 UTC: D:\etmbms\vsprojects\profcppbook\ch31.ixx(132): void __cdecl ch31::exercises::ex4::trickyFunction(class ch31::exercises::ex4::ComplicatedClass *): retrieved cmd 44: UserCommand
2025-08-19 13:53:58.4718405 UTC: D:\etmbms\vsprojects\profcppbook\ch31.ixx(132): void __cdecl ch31::exercises::ex4::trickyFunction(class ch31::exercises::ex4::ComplicatedClass *): retrieved cmd 45: UserCommand
2025-08-19 13:53:58.4722424 UTC: D:\etmbms\vsprojects\profcppbook\ch31.ixx(132): void __cdecl ch31::exercises::ex4::trickyFunction(class ch31::exercises::ex4::ComplicatedClass *): retrieved cmd 46: UserCommand
2025-08-19 13:53:58.4726156 UTC: D:\etmbms\vsprojects\profcppbook\ch31.ixx(132): void __cdecl ch31::exercises::ex4::trickyFunction(class ch31::exercises::ex4::ComplicatedClass *): retrieved cmd 47: UserCommand
2025-08-19 13:53:58.4729825 UTC: D:\etmbms\vsprojects\profcppbook\ch31.ixx(132): void __cdecl ch31::exercises::ex4::trickyFunction(class ch31::exercises::ex4::ComplicatedClass *): retrieved cmd 48: UserCommand
2025-08-19 13:53:58.4733506 UTC: D:\etmbms\vsprojects\profcppbook\ch31.ixx(132): void __cdecl ch31::exercises::ex4::trickyFunction(class ch31::exercises::ex4::ComplicatedClass *): retrieved cmd 49: UserCommand
2025-08-19 13:53:58.4738200 UTC: D:\etmbms\vsprojects\profcppbook\ch31.ixx(132): void __cdecl ch31::exercises::ex4::trickyFunction(class ch31::exercises::ex4::ComplicatedClass *): retrieved cmd 50: UserCommand
2025-08-19 13:53:58.4742517 UTC: D:\etmbms\vsprojects\profcppbook\ch31.ixx(132): void __cdecl ch31::exercises::ex4::trickyFunction(class ch31::exercises::ex4::ComplicatedClass *): retrieved cmd 51: UserCommand
2025-08-19 13:53:58.4746649 UTC: D:\etmbms\vsprojects\profcppbook\ch31.ixx(132): void __cdecl ch31::exercises::ex4::trickyFunction(class ch31::exercises::ex4::ComplicatedClass *): retrieved cmd 52: UserCommand
2025-08-19 13:53:58.4750649 UTC: D:\etmbms\vsprojects\profcppbook\ch31.ixx(132): void __cdecl ch31::exercises::ex4::trickyFunction(class ch31::exercises::ex4::ComplicatedClass *): retrieved cmd 53: UserCommand
2025-08-19 13:53:58.4754714 UTC: D:\etmbms\vsprojects\profcppbook\ch31.ixx(132): void __cdecl ch31::exercises::ex4::trickyFunction(class ch31::exercises::ex4::ComplicatedClass *): retrieved cmd 54: UserCommand
2025-08-19 13:53:58.4758800 UTC: D:\etmbms\vsprojects\profcppbook\ch31.ixx(132): void __cdecl ch31::exercises::ex4::trickyFunction(class ch31::exercises::ex4::ComplicatedClass *): retrieved cmd 55: UserCommand
2025-08-19 13:53:58.4763122 UTC: D:\etmbms\vsprojects\profcppbook\ch31.ixx(132): void __cdecl ch31::exercises::ex4::trickyFunction(class ch31::exercises::ex4::ComplicatedClass *): retrieved cmd 56: UserCommand
2025-08-19 13:53:58.4767123 UTC: D:\etmbms\vsprojects\profcppbook\ch31.ixx(132): void __cdecl ch31::exercises::ex4::trickyFunction(class ch31::exercises::ex4::ComplicatedClass *): retrieved cmd 57: UserCommand
2025-08-19 13:53:58.4770920 UTC: D:\etmbms\vsprojects\profcppbook\ch31.ixx(132): void __cdecl ch31::exercises::ex4::trickyFunction(class ch31::exercises::ex4::ComplicatedClass *): retrieved cmd 58: UserCommand
2025-08-19 13:53:58.4774796 UTC: D:\etmbms\vsprojects\profcppbook\ch31.ixx(132): void __cdecl ch31::exercises::ex4::trickyFunction(class ch31::exercises::ex4::ComplicatedClass *): retrieved cmd 59: UserCommand
2025-08-19 13:53:58.4778740 UTC: D:\etmbms\vsprojects\profcppbook\ch31.ixx(132): void __cdecl ch31::exercises::ex4::trickyFunction(class ch31::exercises::ex4::ComplicatedClass *): retrieved cmd 60: UserCommand
2025-08-19 13:53:58.4782588 UTC: D:\etmbms\vsprojects\profcppbook\ch31.ixx(132): void __cdecl ch31::exercises::ex4::trickyFunction(class ch31::exercises::ex4::ComplicatedClass *): retrieved cmd 61: UserCommand
2025-08-19 13:53:58.4786302 UTC: D:\etmbms\vsprojects\profcppbook\ch31.ixx(132): void __cdecl ch31::exercises::ex4::trickyFunction(class ch31::exercises::ex4::ComplicatedClass *): retrieved cmd 62: UserCommand
2025-08-19 13:53:58.4789967 UTC: D:\etmbms\vsprojects\profcppbook\ch31.ixx(132): void __cdecl ch31::exercises::ex4::trickyFunction(class ch31::exercises::ex4::ComplicatedClass *): retrieved cmd 63: UserCommand
2025-08-19 13:53:58.4793559 UTC: D:\etmbms\vsprojects\profcppbook\ch31.ixx(132): void __cdecl ch31::exercises::ex4::trickyFunction(class ch31::exercises::ex4::ComplicatedClass *): retrieved cmd 64: UserCommand
2025-08-19 13:53:58.4797129 UTC: D:\etmbms\vsprojects\profcppbook\ch31.ixx(132): void __cdecl ch31::exercises::ex4::trickyFunction(class ch31::exercises::ex4::ComplicatedClass *): retrieved cmd 65: UserCommand
2025-08-19 13:53:58.4800906 UTC: D:\etmbms\vsprojects\profcppbook\ch31.ixx(132): void __cdecl ch31::exercises::ex4::trickyFunction(class ch31::exercises::ex4::ComplicatedClass *): retrieved cmd 66: UserCommand
2025-08-19 13:53:58.4804749 UTC: D:\etmbms\vsprojects\profcppbook\ch31.ixx(132): void __cdecl ch31::exercises::ex4::trickyFunction(class ch31::exercises::ex4::ComplicatedClass *): retrieved cmd 67: UserCommand
2025-08-19 13:53:58.4808506 UTC: D:\etmbms\vsprojects\profcppbook\ch31.ixx(132): void __cdecl ch31::exercises::ex4::trickyFunction(class ch31::exercises::ex4::ComplicatedClass *): retrieved cmd 68: UserCommand
2025-08-19 13:53:58.4812141 UTC: D:\etmbms\vsprojects\profcppbook\ch31.ixx(132): void __cdecl ch31::exercises::ex4::trickyFunction(class ch31::exercises::ex4::ComplicatedClass *): retrieved cmd 69: UserCommand
2025-08-19 13:53:58.4815799 UTC: D:\etmbms\vsprojects\profcppbook\ch31.ixx(132): void __cdecl ch31::exercises::ex4::trickyFunction(class ch31::exercises::ex4::ComplicatedClass *): retrieved cmd 70: UserCommand
2025-08-19 13:53:58.4819579 UTC: D:\etmbms\vsprojects\profcppbook\ch31.ixx(132): void __cdecl ch31::exercises::ex4::trickyFunction(class ch31::exercises::ex4::ComplicatedClass *): retrieved cmd 71: UserCommand
2025-08-19 13:53:58.4823207 UTC: D:\etmbms\vsprojects\profcppbook\ch31.ixx(132): void __cdecl ch31::exercises::ex4::trickyFunction(class ch31::exercises::ex4::ComplicatedClass *): retrieved cmd 72: UserCommand
2025-08-19 13:53:58.4826904 UTC: D:\etmbms\vsprojects\profcppbook\ch31.ixx(132): void __cdecl ch31::exercises::ex4::trickyFunction(class ch31::exercises::ex4::ComplicatedClass *): retrieved cmd 73: UserCommand
2025-08-19 13:53:58.4830715 UTC: D:\etmbms\vsprojects\profcppbook\ch31.ixx(132): void __cdecl ch31::exercises::ex4::trickyFunction(class ch31::exercises::ex4::ComplicatedClass *): retrieved cmd 74: UserCommand
2025-08-19 13:53:58.4834367 UTC: D:\etmbms\vsprojects\profcppbook\ch31.ixx(132): void __cdecl ch31::exercises::ex4::trickyFunction(class ch31::exercises::ex4::ComplicatedClass *): retrieved cmd 75: UserCommand
2025-08-19 13:53:58.4838229 UTC: D:\etmbms\vsprojects\profcppbook\ch31.ixx(132): void __cdecl ch31::exercises::ex4::trickyFunction(class ch31::exercises::ex4::ComplicatedClass *): retrieved cmd 76: UserCommand
2025-08-19 13:53:58.4842157 UTC: D:\etmbms\vsprojects\profcppbook\ch31.ixx(132): void __cdecl ch31::exercises::ex4::trickyFunction(class ch31::exercises::ex4::ComplicatedClass *): retrieved cmd 77: UserCommand
2025-08-19 13:53:58.4845849 UTC: D:\etmbms\vsprojects\profcppbook\ch31.ixx(132): void __cdecl ch31::exercises::ex4::trickyFunction(class ch31::exercises::ex4::ComplicatedClass *): retrieved cmd 78: UserCommand
2025-08-19 13:53:58.4849610 UTC: D:\etmbms\vsprojects\profcppbook\ch31.ixx(132): void __cdecl ch31::exercises::ex4::trickyFunction(class ch31::exercises::ex4::ComplicatedClass *): retrieved cmd 79: UserCommand
2025-08-19 13:53:58.4853726 UTC: D:\etmbms\vsprojects\profcppbook\ch31.ixx(132): void __cdecl ch31::exercises::ex4::trickyFunction(class ch31::exercises::ex4::ComplicatedClass *): retrieved cmd 80: UserCommand
2025-08-19 13:53:58.4857960 UTC: D:\etmbms\vsprojects\profcppbook\ch31.ixx(132): void __cdecl ch31::exercises::ex4::trickyFunction(class ch31::exercises::ex4::ComplicatedClass *): retrieved cmd 81: UserCommand
2025-08-19 13:53:58.4862273 UTC: D:\etmbms\vsprojects\profcppbook\ch31.ixx(132): void __cdecl ch31::exercises::ex4::trickyFunction(class ch31::exercises::ex4::ComplicatedClass *): retrieved cmd 82: UserCommand
2025-08-19 13:53:58.4867433 UTC: D:\etmbms\vsprojects\profcppbook\ch31.ixx(132): void __cdecl ch31::exercises::ex4::trickyFunction(class ch31::exercises::ex4::ComplicatedClass *): retrieved cmd 83: UserCommand
2025-08-19 13:53:58.4871493 UTC: D:\etmbms\vsprojects\profcppbook\ch31.ixx(132): void __cdecl ch31::exercises::ex4::trickyFunction(class ch31::exercises::ex4::ComplicatedClass *): retrieved cmd 84: UserCommand
2025-08-19 13:53:58.4875362 UTC: D:\etmbms\vsprojects\profcppbook\ch31.ixx(132): void __cdecl ch31::exercises::ex4::trickyFunction(class ch31::exercises::ex4::ComplicatedClass *): retrieved cmd 85: UserCommand
2025-08-19 13:53:58.4879295 UTC: D:\etmbms\vsprojects\profcppbook\ch31.ixx(132): void __cdecl ch31::exercises::ex4::trickyFunction(class ch31::exercises::ex4::ComplicatedClass *): retrieved cmd 86: UserCommand
2025-08-19 13:53:58.4883343 UTC: D:\etmbms\vsprojects\profcppbook\ch31.ixx(132): void __cdecl ch31::exercises::ex4::trickyFunction(class ch31::exercises::ex4::ComplicatedClass *): retrieved cmd 87: UserCommand
2025-08-19 13:53:58.4887394 UTC: D:\etmbms\vsprojects\profcppbook\ch31.ixx(132): void __cdecl ch31::exercises::ex4::trickyFunction(class ch31::exercises::ex4::ComplicatedClass *): retrieved cmd 88: UserCommand
2025-08-19 13:53:58.4891331 UTC: D:\etmbms\vsprojects\profcppbook\ch31.ixx(132): void __cdecl ch31::exercises::ex4::trickyFunction(class ch31::exercises::ex4::ComplicatedClass *): retrieved cmd 89: UserCommand
2025-08-19 13:53:58.4895210 UTC: D:\etmbms\vsprojects\profcppbook\ch31.ixx(132): void __cdecl ch31::exercises::ex4::trickyFunction(class ch31::exercises::ex4::ComplicatedClass *): retrieved cmd 90: UserCommand
2025-08-19 13:53:58.4899102 UTC: D:\etmbms\vsprojects\profcppbook\ch31.ixx(132): void __cdecl ch31::exercises::ex4::trickyFunction(class ch31::exercises::ex4::ComplicatedClass *): retrieved cmd 91: UserCommand
2025-08-19 13:53:58.4903085 UTC: D:\etmbms\vsprojects\profcppbook\ch31.ixx(132): void __cdecl ch31::exercises::ex4::trickyFunction(class ch31::exercises::ex4::ComplicatedClass *): retrieved cmd 92: UserCommand
2025-08-19 13:53:58.4906904 UTC: D:\etmbms\vsprojects\profcppbook\ch31.ixx(132): void __cdecl ch31::exercises::ex4::trickyFunction(class ch31::exercises::ex4::ComplicatedClass *): retrieved cmd 93: UserCommand
2025-08-19 13:53:58.4911022 UTC: D:\etmbms\vsprojects\profcppbook\ch31.ixx(132): void __cdecl ch31::exercises::ex4::trickyFunction(class ch31::exercises::ex4::ComplicatedClass *): retrieved cmd 94: UserCommand
2025-08-19 13:53:58.4915256 UTC: D:\etmbms\vsprojects\profcppbook\ch31.ixx(132): void __cdecl ch31::exercises::ex4::trickyFunction(class ch31::exercises::ex4::ComplicatedClass *): retrieved cmd 95: UserCommand
2025-08-19 13:53:58.4919291 UTC: D:\etmbms\vsprojects\profcppbook\ch31.ixx(132): void __cdecl ch31::exercises::ex4::trickyFunction(class ch31::exercises::ex4::ComplicatedClass *): retrieved cmd 96: UserCommand
2025-08-19 13:53:58.4923495 UTC: D:\etmbms\vsprojects\profcppbook\ch31.ixx(132): void __cdecl ch31::exercises::ex4::trickyFunction(class ch31::exercises::ex4::ComplicatedClass *): retrieved cmd 97: UserCommand
2025-08-19 13:53:58.4927540 UTC: D:\etmbms\vsprojects\profcppbook\ch31.ixx(132): void __cdecl ch31::exercises::ex4::trickyFunction(class ch31::exercises::ex4::ComplicatedClass *): retrieved cmd 98: UserCommand
2025-08-19 13:53:58.4931686 UTC: D:\etmbms\vsprojects\profcppbook\ch31.ixx(132): void __cdecl ch31::exercises::ex4::trickyFunction(class ch31::exercises::ex4::ComplicatedClass *): retrieved cmd 99: UserCommand
2025-08-19 13:56:39.6123954 UTC: D:\etmbms\vsprojects\profcppbook\ch31.ixx(150): void __cdecl ch31::exercises::ex4::test(int,char **): Argument: D:\etmbms\vsprojects\profcppbook\x64\Debug\profcppbook.exe
2025-08-19 13:56:39.6146004 UTC: D:\etmbms\vsprojects\profcppbook\ch31.ixx(150): void __cdecl ch31::exercises::ex4::test(int,char **): Argument: -d
2025-08-19 13:56:39.6150127 UTC: D:\etmbms\vsprojects\profcppbook\ch31.ixx(128): void __cdecl ch31::exercises::ex4::trickyFunction(class ch31::exercises::ex4::ComplicatedClass *): given argument: ComplicatedClass
2025-08-19 13:56:39.6155216 UTC: D:\etmbms\vsprojects\profcppbook\ch31.ixx(132): void __cdecl ch31::exercises::ex4::trickyFunction(class ch31::exercises::ex4::ComplicatedClass *): retrieved cmd 0: UserCommand
2025-08-19 13:56:39.6159996 UTC: D:\etmbms\vsprojects\profcppbook\ch31.ixx(132): void __cdecl ch31::exercises::ex4::trickyFunction(class ch31::exercises::ex4::ComplicatedClass *): retrieved cmd 1: UserCommand
2025-08-19 13:56:39.6164264 UTC: D:\etmbms\vsprojects\profcppbook\ch31.ixx(132): void __cdecl ch31::exercises::ex4::trickyFunction(class ch31::exercises::ex4::ComplicatedClass *): retrieved cmd 2: UserCommand
2025-08-19 13:56:39.6168541 UTC: D:\etmbms\vsprojects\profcppbook\ch31.ixx(132): void __cdecl ch31::exercises::ex4::trickyFunction(class ch31::exercises::ex4::ComplicatedClass *): retrieved cmd 3: UserCommand
2025-08-19 13:56:39.6172933 UTC: D:\etmbms\vsprojects\profcppbook\ch31.ixx(132): void __cdecl ch31::exercises::ex4::trickyFunction(class ch31::exercises::ex4::ComplicatedClass *): retrieved cmd 4: UserCommand
2025-08-19 13:56:39.6177167 UTC: D:\etmbms\vsprojects\profcppbook\ch31.ixx(132): void __cdecl ch31::exercises::ex4::trickyFunction(class ch31::exercises::ex4::ComplicatedClass *): retrieved cmd 5: UserCommand
2025-08-19 13:56:39.6181277 UTC: D:\etmbms\vsprojects\profcppbook\ch31.ixx(132): void __cdecl ch31::exercises::ex4::trickyFunction(class ch31::exercises::ex4::ComplicatedClass *): retrieved cmd 6: UserCommand
2025-08-19 13:56:39.6185648 UTC: D:\etmbms\vsprojects\profcppbook\ch31.ixx(132): void __cdecl ch31::exercises::ex4::trickyFunction(class ch31::exercises::ex4::ComplicatedClass *): retrieved cmd 7: UserCommand
2025-08-19 13:56:39.6189952 UTC: D:\etmbms\vsprojects\profcppbook\ch31.ixx(132): void __cdecl ch31::exercises::ex4::trickyFunction(class ch31::exercises::ex4::ComplicatedClass *): retrieved cmd 8: UserCommand
2025-08-19 13:56:39.6194277 UTC: D:\etmbms\vsprojects\profcppbook\ch31.ixx(132): void __cdecl ch31::exercises::ex4::trickyFunction(class ch31::exercises::ex4::ComplicatedClass *): retrieved cmd 9: UserCommand
2025-08-19 13:56:39.6198671 UTC: D:\etmbms\vsprojects\profcppbook\ch31.ixx(132): void __cdecl ch31::exercises::ex4::trickyFunction(class ch31::exercises::ex4::ComplicatedClass *): retrieved cmd 10: UserCommand
2025-08-19 13:56:39.6202961 UTC: D:\etmbms\vsprojects\profcppbook\ch31.ixx(132): void __cdecl ch31::exercises::ex4::trickyFunction(class ch31::exercises::ex4::ComplicatedClass *): retrieved cmd 11: UserCommand
2025-08-19 13:56:39.6207513 UTC: D:\etmbms\vsprojects\profcppbook\ch31.ixx(132): void __cdecl ch31::exercises::ex4::trickyFunction(class ch31::exercises::ex4::ComplicatedClass *): retrieved cmd 12: UserCommand
2025-08-19 13:56:39.6211936 UTC: D:\etmbms\vsprojects\profcppbook\ch31.ixx(132): void __cdecl ch31::exercises::ex4::trickyFunction(class ch31::exercises::ex4::ComplicatedClass *): retrieved cmd 13: UserCommand
2025-08-19 13:56:39.6216193 UTC: D:\etmbms\vsprojects\profcppbook\ch31.ixx(132): void __cdecl ch31::exercises::ex4::trickyFunction(class ch31::exercises::ex4::ComplicatedClass *): retrieved cmd 14: UserCommand
2025-08-19 13:56:39.6220616 UTC: D:\etmbms\vsprojects\profcppbook\ch31.ixx(132): void __cdecl ch31::exercises::ex4::trickyFunction(class ch31::exercises::ex4::ComplicatedClass *): retrieved cmd 15: UserCommand
2025-08-19 13:56:39.6226306 UTC: D:\etmbms\vsprojects\profcppbook\ch31.ixx(132): void __cdecl ch31::exercises::ex4::trickyFunction(class ch31::exercises::ex4::ComplicatedClass *): retrieved cmd 16: UserCommand
2025-08-19 13:56:39.6230726 UTC: D:\etmbms\vsprojects\profcppbook\ch31.ixx(132): void __cdecl ch31::exercises::ex4::trickyFunction(class ch31::exercises::ex4::ComplicatedClass *): retrieved cmd 17: UserCommand
2025-08-19 13:56:39.6235363 UTC: D:\etmbms\vsprojects\profcppbook\ch31.ixx(132): void __cdecl ch31::exercises::ex4::trickyFunction(class ch31::exercises::ex4::ComplicatedClass *): retrieved cmd 18: UserCommand
2025-08-19 13:56:39.6239601 UTC: D:\etmbms\vsprojects\profcppbook\ch31.ixx(132): void __cdecl ch31::exercises::ex4::trickyFunction(class ch31::exercises::ex4::ComplicatedClass *): retrieved cmd 19: UserCommand
2025-08-19 13:56:39.6244093 UTC: D:\etmbms\vsprojects\profcppbook\ch31.ixx(132): void __cdecl ch31::exercises::ex4::trickyFunction(class ch31::exercises::ex4::ComplicatedClass *): retrieved cmd 20: UserCommand
2025-08-19 13:56:39.6248624 UTC: D:\etmbms\vsprojects\profcppbook\ch31.ixx(132): void __cdecl ch31::exercises::ex4::trickyFunction(class ch31::exercises::ex4::ComplicatedClass *): retrieved cmd 21: UserCommand
2025-08-19 13:56:39.6253070 UTC: D:\etmbms\vsprojects\profcppbook\ch31.ixx(132): void __cdecl ch31::exercises::ex4::trickyFunction(class ch31::exercises::ex4::ComplicatedClass *): retrieved cmd 22: UserCommand
2025-08-19 13:56:39.6257902 UTC: D:\etmbms\vsprojects\profcppbook\ch31.ixx(132): void __cdecl ch31::exercises::ex4::trickyFunction(class ch31::exercises::ex4::ComplicatedClass *): retrieved cmd 23: UserCommand
2025-08-19 13:56:39.6262229 UTC: D:\etmbms\vsprojects\profcppbook\ch31.ixx(132): void __cdecl ch31::exercises::ex4::trickyFunction(class ch31::exercises::ex4::ComplicatedClass *): retrieved cmd 24: UserCommand
2025-08-19 13:56:39.6266667 UTC: D:\etmbms\vsprojects\profcppbook\ch31.ixx(132): void __cdecl ch31::exercises::ex4::trickyFunction(class ch31::exercises::ex4::ComplicatedClass *): retrieved cmd 25: UserCommand
2025-08-19 13:56:39.6271648 UTC: D:\etmbms\vsprojects\profcppbook\ch31.ixx(132): void __cdecl ch31::exercises::ex4::trickyFunction(class ch31::exercises::ex4::ComplicatedClass *): retrieved cmd 26: UserCommand
2025-08-19 13:56:39.6276862 UTC: D:\etmbms\vsprojects\profcppbook\ch31.ixx(132): void __cdecl ch31::exercises::ex4::trickyFunction(class ch31::exercises::ex4::ComplicatedClass *): retrieved cmd 27: UserCommand
2025-08-19 13:56:39.6281692 UTC: D:\etmbms\vsprojects\profcppbook\ch31.ixx(132): void __cdecl ch31::exercises::ex4::trickyFunction(class ch31::exercises::ex4::ComplicatedClass *): retrieved cmd 28: UserCommand
2025-08-19 13:56:39.6286260 UTC: D:\etmbms\vsprojects\profcppbook\ch31.ixx(132): void __cdecl ch31::exercises::ex4::trickyFunction(class ch31::exercises::ex4::ComplicatedClass *): retrieved cmd 29: UserCommand
2025-08-19 13:56:39.6290901 UTC: D:\etmbms\vsprojects\profcppbook\ch31.ixx(132): void __cdecl ch31::exercises::ex4::trickyFunction(class ch31::exercises::ex4::ComplicatedClass *): retrieved cmd 30: UserCommand
2025-08-19 13:56:39.6295583 UTC: D:\etmbms\vsprojects\profcppbook\ch31.ixx(132): void __cdecl ch31::exercises::ex4::trickyFunction(class ch31::exercises::ex4::ComplicatedClass *): retrieved cmd 31: UserCommand
2025-08-19 13:56:39.6299962 UTC: D:\etmbms\vsprojects\profcppbook\ch31.ixx(132): void __cdecl ch31::exercises::ex4::trickyFunction(class ch31::exercises::ex4::ComplicatedClass *): retrieved cmd 32: UserCommand
2025-08-19 13:56:39.6306113 UTC: D:\etmbms\vsprojects\profcppbook\ch31.ixx(132): void __cdecl ch31::exercises::ex4::trickyFunction(class ch31::exercises::ex4::ComplicatedClass *): retrieved cmd 33: UserCommand
2025-08-19 13:56:39.6310687 UTC: D:\etmbms\vsprojects\profcppbook\ch31.ixx(132): void __cdecl ch31::exercises::ex4::trickyFunction(class ch31::exercises::ex4::ComplicatedClass *): retrieved cmd 34: UserCommand
2025-08-19 13:56:39.6315256 UTC: D:\etmbms\vsprojects\profcppbook\ch31.ixx(132): void __cdecl ch31::exercises::ex4::trickyFunction(class ch31::exercises::ex4::ComplicatedClass *): retrieved cmd 35: UserCommand
2025-08-19 13:56:39.6320335 UTC: D:\etmbms\vsprojects\profcppbook\ch31.ixx(132): void __cdecl ch31::exercises::ex4::trickyFunction(class ch31::exercises::ex4::ComplicatedClass *): retrieved cmd 36: UserCommand
2025-08-19 13:56:39.6324798 UTC: D:\etmbms\vsprojects\profcppbook\ch31.ixx(132): void __cdecl ch31::exercises::ex4::trickyFunction(class ch31::exercises::ex4::ComplicatedClass *): retrieved cmd 37: UserCommand
2025-08-19 13:56:39.6329073 UTC: D:\etmbms\vsprojects\profcppbook\ch31.ixx(132): void __cdecl ch31::exercises::ex4::trickyFunction(class ch31::exercises::ex4::ComplicatedClass *): retrieved cmd 38: UserCommand
2025-08-19 13:56:39.6333223 UTC: D:\etmbms\vsprojects\profcppbook\ch31.ixx(132): void __cdecl ch31::exercises::ex4::trickyFunction(class ch31::exercises::ex4::ComplicatedClass *): retrieved cmd 39: UserCommand
2025-08-19 13:56:39.6337525 UTC: D:\etmbms\vsprojects\profcppbook\ch31.ixx(132): void __cdecl ch31::exercises::ex4::trickyFunction(class ch31::exercises::ex4::ComplicatedClass *): retrieved cmd 40: UserCommand
2025-08-19 13:56:39.6341801 UTC: D:\etmbms\vsprojects\profcppbook\ch31.ixx(132): void __cdecl ch31::exercises::ex4::trickyFunction(class ch31::exercises::ex4::ComplicatedClass *): retrieved cmd 41: UserCommand
2025-08-19 13:56:39.6346088 UTC: D:\etmbms\vsprojects\profcppbook\ch31.ixx(132): void __cdecl ch31::exercises::ex4::trickyFunction(class ch31::exercises::ex4::ComplicatedClass *): retrieved cmd 42: UserCommand
2025-08-19 13:56:39.6351204 UTC: D:\etmbms\vsprojects\profcppbook\ch31.ixx(132): void __cdecl ch31::exercises::ex4::trickyFunction(class ch31::exercises::ex4::ComplicatedClass *): retrieved cmd 43: UserCommand
2025-08-19 13:56:39.6357885 UTC: D:\etmbms\vsprojects\profcppbook\ch31.ixx(132): void __cdecl ch31::exercises::ex4::trickyFunction(class ch31::exercises::ex4::ComplicatedClass *): retrieved cmd 44: UserCommand
2025-08-19 13:56:39.6362152 UTC: D:\etmbms\vsprojects\profcppbook\ch31.ixx(132): void __cdecl ch31::exercises::ex4::trickyFunction(class ch31::exercises::ex4::ComplicatedClass *): retrieved cmd 45: UserCommand
2025-08-19 13:56:39.6367176 UTC: D:\etmbms\vsprojects\profcppbook\ch31.ixx(132): void __cdecl ch31::exercises::ex4::trickyFunction(class ch31::exercises::ex4::ComplicatedClass *): retrieved cmd 46: UserCommand
2025-08-19 13:56:39.6375963 UTC: D:\etmbms\vsprojects\profcppbook\ch31.ixx(132): void __cdecl ch31::exercises::ex4::trickyFunction(class ch31::exercises::ex4::ComplicatedClass *): retrieved cmd 47: UserCommand
2025-08-19 13:56:39.6381738 UTC: D:\etmbms\vsprojects\profcppbook\ch31.ixx(132): void __cdecl ch31::exercises::ex4::trickyFunction(class ch31::exercises::ex4::ComplicatedClass *): retrieved cmd 48: UserCommand
2025-08-19 13:56:39.6388077 UTC: D:\etmbms\vsprojects\profcppbook\ch31.ixx(132): void __cdecl ch31::exercises::ex4::trickyFunction(class ch31::exercises::ex4::ComplicatedClass *): retrieved cmd 49: UserCommand
2025-08-19 13:56:39.6393096 UTC: D:\etmbms\vsprojects\profcppbook\ch31.ixx(132): void __cdecl ch31::exercises::ex4::trickyFunction(class ch31::exercises::ex4::ComplicatedClass *): retrieved cmd 50: UserCommand
2025-08-19 13:56:39.6398754 UTC: D:\etmbms\vsprojects\profcppbook\ch31.ixx(132): void __cdecl ch31::exercises::ex4::trickyFunction(class ch31::exercises::ex4::ComplicatedClass *): retrieved cmd 51: UserCommand
2025-08-19 13:56:39.6403861 UTC: D:\etmbms\vsprojects\profcppbook\ch31.ixx(132): void __cdecl ch31::exercises::ex4::trickyFunction(class ch31::exercises::ex4::ComplicatedClass *): retrieved cmd 52: UserCommand
2025-08-19 13:56:39.6408714 UTC: D:\etmbms\vsprojects\profcppbook\ch31.ixx(132): void __cdecl ch31::exercises::ex4::trickyFunction(class ch31::exercises::ex4::ComplicatedClass *): retrieved cmd 53: UserCommand
2025-08-19 13:56:39.6413315 UTC: D:\etmbms\vsprojects\profcppbook\ch31.ixx(132): void __cdecl ch31::exercises::ex4::trickyFunction(class ch31::exercises::ex4::ComplicatedClass *): retrieved cmd 54: UserCommand
2025-08-19 13:56:39.6418236 UTC: D:\etmbms\vsprojects\profcppbook\ch31.ixx(132): void __cdecl ch31::exercises::ex4::trickyFunction(class ch31::exercises::ex4::ComplicatedClass *): retrieved cmd 55: UserCommand
2025-08-19 13:56:39.6422716 UTC: D:\etmbms\vsprojects\profcppbook\ch31.ixx(132): void __cdecl ch31::exercises::ex4::trickyFunction(class ch31::exercises::ex4::ComplicatedClass *): retrieved cmd 56: UserCommand
2025-08-19 13:56:39.6427031 UTC: D:\etmbms\vsprojects\profcppbook\ch31.ixx(132): void __cdecl ch31::exercises::ex4::trickyFunction(class ch31::exercises::ex4::ComplicatedClass *): retrieved cmd 57: UserCommand
2025-08-19 13:56:39.6431308 UTC: D:\etmbms\vsprojects\profcppbook\ch31.ixx(132): void __cdecl ch31::exercises::ex4::trickyFunction(class ch31::exercises::ex4::ComplicatedClass *): retrieved cmd 58: UserCommand
2025-08-19 13:56:39.6435766 UTC: D:\etmbms\vsprojects\profcppbook\ch31.ixx(132): void __cdecl ch31::exercises::ex4::trickyFunction(class ch31::exercises::ex4::ComplicatedClass *): retrieved cmd 59: UserCommand
2025-08-19 13:56:39.6440313 UTC: D:\etmbms\vsprojects\profcppbook\ch31.ixx(132): void __cdecl ch31::exercises::ex4::trickyFunction(class ch31::exercises::ex4::ComplicatedClass *): retrieved cmd 60: UserCommand
2025-08-19 13:56:39.6445053 UTC: D:\etmbms\vsprojects\profcppbook\ch31.ixx(132): void __cdecl ch31::exercises::ex4::trickyFunction(class ch31::exercises::ex4::ComplicatedClass *): retrieved cmd 61: UserCommand
2025-08-19 13:56:39.6449313 UTC: D:\etmbms\vsprojects\profcppbook\ch31.ixx(132): void __cdecl ch31::exercises::ex4::trickyFunction(class ch31::exercises::ex4::ComplicatedClass *): retrieved cmd 62: UserCommand
2025-08-19 13:56:39.6453454 UTC: D:\etmbms\vsprojects\profcppbook\ch31.ixx(132): void __cdecl ch31::exercises::ex4::trickyFunction(class ch31::exercises::ex4::ComplicatedClass *): retrieved cmd 63: UserCommand
2025-08-19 13:56:39.6457530 UTC: D:\etmbms\vsprojects\profcppbook\ch31.ixx(132): void __cdecl ch31::exercises::ex4::trickyFunction(class ch31::exercises::ex4::ComplicatedClass *): retrieved cmd 64: UserCommand
2025-08-19 13:56:39.6461821 UTC: D:\etmbms\vsprojects\profcppbook\ch31.ixx(132): void __cdecl ch31::exercises::ex4::trickyFunction(class ch31::exercises::ex4::ComplicatedClass *): retrieved cmd 65: UserCommand
2025-08-19 13:56:39.6466128 UTC: D:\etmbms\vsprojects\profcppbook\ch31.ixx(132): void __cdecl ch31::exercises::ex4::trickyFunction(class ch31::exercises::ex4::ComplicatedClass *): retrieved cmd 66: UserCommand
2025-08-19 13:56:39.6470320 UTC: D:\etmbms\vsprojects\profcppbook\ch31.ixx(132): void __cdecl ch31::exercises::ex4::trickyFunction(class ch31::exercises::ex4::ComplicatedClass *): retrieved cmd 67: UserCommand
2025-08-19 13:56:39.6474688 UTC: D:\etmbms\vsprojects\profcppbook\ch31.ixx(132): void __cdecl ch31::exercises::ex4::trickyFunction(class ch31::exercises::ex4::ComplicatedClass *): retrieved cmd 68: UserCommand
2025-08-19 13:56:39.6479249 UTC: D:\etmbms\vsprojects\profcppbook\ch31.ixx(132): void __cdecl ch31::exercises::ex4::trickyFunction(class ch31::exercises::ex4::ComplicatedClass *): retrieved cmd 69: UserCommand
2025-08-19 13:56:39.6483669 UTC: D:\etmbms\vsprojects\profcppbook\ch31.ixx(132): void __cdecl ch31::exercises::ex4::trickyFunction(class ch31::exercises::ex4::ComplicatedClass *): retrieved cmd 70: UserCommand
2025-08-19 13:56:39.6487783 UTC: D:\etmbms\vsprojects\profcppbook\ch31.ixx(132): void __cdecl ch31::exercises::ex4::trickyFunction(class ch31::exercises::ex4::ComplicatedClass *): retrieved cmd 71: UserCommand
2025-08-19 13:56:39.6491595 UTC: D:\etmbms\vsprojects\profcppbook\ch31.ixx(132): void __cdecl ch31::exercises::ex4::trickyFunction(class ch31::exercises::ex4::ComplicatedClass *): retrieved cmd 72: UserCommand
2025-08-19 13:56:39.6495495 UTC: D:\etmbms\vsprojects\profcppbook\ch31.ixx(132): void __cdecl ch31::exercises::ex4::trickyFunction(class ch31::exercises::ex4::ComplicatedClass *): retrieved cmd 73: UserCommand
2025-08-19 13:56:39.6499478 UTC: D:\etmbms\vsprojects\profcppbook\ch31.ixx(132): void __cdecl ch31::exercises::ex4::trickyFunction(class ch31::exercises::ex4::ComplicatedClass *): retrieved cmd 74: UserCommand
2025-08-19 13:56:39.6503384 UTC: D:\etmbms\vsprojects\profcppbook\ch31.ixx(132): void __cdecl ch31::exercises::ex4::trickyFunction(class ch31::exercises::ex4::ComplicatedClass *): retrieved cmd 75: UserCommand
2025-08-19 13:56:39.6507317 UTC: D:\etmbms\vsprojects\profcppbook\ch31.ixx(132): void __cdecl ch31::exercises::ex4::trickyFunction(class ch31::exercises::ex4::ComplicatedClass *): retrieved cmd 76: UserCommand
2025-08-19 13:56:39.6511205 UTC: D:\etmbms\vsprojects\profcppbook\ch31.ixx(132): void __cdecl ch31::exercises::ex4::trickyFunction(class ch31::exercises::ex4::ComplicatedClass *): retrieved cmd 77: UserCommand
2025-08-19 13:56:39.6515012 UTC: D:\etmbms\vsprojects\profcppbook\ch31.ixx(132): void __cdecl ch31::exercises::ex4::trickyFunction(class ch31::exercises::ex4::ComplicatedClass *): retrieved cmd 78: UserCommand
2025-08-19 13:56:39.6518874 UTC: D:\etmbms\vsprojects\profcppbook\ch31.ixx(132): void __cdecl ch31::exercises::ex4::trickyFunction(class ch31::exercises::ex4::ComplicatedClass *): retrieved cmd 79: UserCommand
2025-08-19 13:56:39.6522659 UTC: D:\etmbms\vsprojects\profcppbook\ch31.ixx(132): void __cdecl ch31::exercises::ex4::trickyFunction(class ch31::exercises::ex4::ComplicatedClass *): retrieved cmd 80: UserCommand
2025-08-19 13:56:39.6526525 UTC: D:\etmbms\vsprojects\profcppbook\ch31.ixx(132): void __cdecl ch31::exercises::ex4::trickyFunction(class ch31::exercises::ex4::ComplicatedClass *): retrieved cmd 81: UserCommand
2025-08-19 13:56:39.6530907 UTC: D:\etmbms\vsprojects\profcppbook\ch31.ixx(132): void __cdecl ch31::exercises::ex4::trickyFunction(class ch31::exercises::ex4::ComplicatedClass *): retrieved cmd 82: UserCommand
2025-08-19 13:56:39.6534876 UTC: D:\etmbms\vsprojects\profcppbook\ch31.ixx(132): void __cdecl ch31::exercises::ex4::trickyFunction(class ch31::exercises::ex4::ComplicatedClass *): retrieved cmd 83: UserCommand
2025-08-19 13:56:39.6539872 UTC: D:\etmbms\vsprojects\profcppbook\ch31.ixx(132): void __cdecl ch31::exercises::ex4::trickyFunction(class ch31::exercises::ex4::ComplicatedClass *): retrieved cmd 84: UserCommand
2025-08-19 13:56:39.6544177 UTC: D:\etmbms\vsprojects\profcppbook\ch31.ixx(132): void __cdecl ch31::exercises::ex4::trickyFunction(class ch31::exercises::ex4::ComplicatedClass *): retrieved cmd 85: UserCommand
2025-08-19 13:56:39.6548765 UTC: D:\etmbms\vsprojects\profcppbook\ch31.ixx(132): void __cdecl ch31::exercises::ex4::trickyFunction(class ch31::exercises::ex4::ComplicatedClass *): retrieved cmd 86: UserCommand
2025-08-19 13:56:39.6552831 UTC: D:\etmbms\vsprojects\profcppbook\ch31.ixx(132): void __cdecl ch31::exercises::ex4::trickyFunction(class ch31::exercises::ex4::ComplicatedClass *): retrieved cmd 87: UserCommand
2025-08-19 13:56:39.6557261 UTC: D:\etmbms\vsprojects\profcppbook\ch31.ixx(132): void __cdecl ch31::exercises::ex4::trickyFunction(class ch31::exercises::ex4::ComplicatedClass *): retrieved cmd 88: UserCommand
2025-08-19 13:56:39.6561778 UTC: D:\etmbms\vsprojects\profcppbook\ch31.ixx(132): void __cdecl ch31::exercises::ex4::trickyFunction(class ch31::exercises::ex4::ComplicatedClass *): retrieved cmd 89: UserCommand
2025-08-19 13:56:39.6566192 UTC: D:\etmbms\vsprojects\profcppbook\ch31.ixx(132): void __cdecl ch31::exercises::ex4::trickyFunction(class ch31::exercises::ex4::ComplicatedClass *): retrieved cmd 90: UserCommand
2025-08-19 13:56:39.6570345 UTC: D:\etmbms\vsprojects\profcppbook\ch31.ixx(132): void __cdecl ch31::exercises::ex4::trickyFunction(class ch31::exercises::ex4::ComplicatedClass *): retrieved cmd 91: UserCommand
2025-08-19 13:56:39.6574419 UTC: D:\etmbms\vsprojects\profcppbook\ch31.ixx(132): void __cdecl ch31::exercises::ex4::trickyFunction(class ch31::exercises::ex4::ComplicatedClass *): retrieved cmd 92: UserCommand
2025-08-19 13:56:39.6578486 UTC: D:\etmbms\vsprojects\profcppbook\ch31.ixx(132): void __cdecl ch31::exercises::ex4::trickyFunction(class ch31::exercises::ex4::ComplicatedClass *): retrieved cmd 93: UserCommand
2025-08-19 13:56:39.6583072 UTC: D:\etmbms\vsprojects\profcppbook\ch31.ixx(132): void __cdecl ch31::exercises::ex4::trickyFunction(class ch31::exercises::ex4::ComplicatedClass *): retrieved cmd 94: UserCommand
2025-08-19 13:56:39.6587384 UTC: D:\etmbms\vsprojects\profcppbook\ch31.ixx(132): void __cdecl ch31::exercises::ex4::trickyFunction(class ch31::exercises::ex4::ComplicatedClass *): retrieved cmd 95: UserCommand
2025-08-19 13:56:39.6591951 UTC: D:\etmbms\vsprojects\profcppbook\ch31.ixx(132): void __cdecl ch31::exercises::ex4::trickyFunction(class ch31::exercises::ex4::ComplicatedClass *): retrieved cmd 96: UserCommand
2025-08-19 13:56:39.6596594 UTC: D:\etmbms\vsprojects\profcppbook\ch31.ixx(132): void __cdecl ch31::exercises::ex4::trickyFunction(class ch31::exercises::ex4::ComplicatedClass *): retrieved cmd 97: UserCommand
2025-08-19 13:56:39.6600904 UTC: D:\etmbms\vsprojects\profcppbook\ch31.ixx(132): void __cdecl ch31::exercises::ex4::trickyFunction(class ch31::exercises::ex4::ComplicatedClass *): retrieved cmd 98: UserCommand
2025-08-19 13:56:39.6605216 UTC: D:\etmbms\vsprojects\profcppbook\ch31.ixx(132): void __cdecl ch31::exercises::ex4::trickyFunction(class ch31::exercises::ex4::ComplicatedClass *): retrieved cmd 99: UserCommand
2025-08-19 13:56:44.0700775 UTC: D:\etmbms\vsprojects\profcppbook\ch31.ixx(150): void __cdecl ch31::exercises::ex4::test(int,char **): Argument: D:\etmbms\vsprojects\profcppbook\x64\Debug\profcppbook.exe
2025-08-19 13:56:44.0722928 UTC: D:\etmbms\vsprojects\profcppbook\ch31.ixx(150): void __cdecl ch31::exercises::ex4::test(int,char **): Argument: -d
2025-08-19 13:56:44.0727282 UTC: D:\etmbms\vsprojects\profcppbook\ch31.ixx(128): void __cdecl ch31::exercises::ex4::trickyFunction(class ch31::exercises::ex4::ComplicatedClass *): given argument: ComplicatedClass
2025-08-19 13:56:44.0732456 UTC: D:\etmbms\vsprojects\profcppbook\ch31.ixx(132): void __cdecl ch31::exercises::ex4::trickyFunction(class ch31::exercises::ex4::ComplicatedClass *): retrieved cmd 0: UserCommand
2025-08-19 13:56:44.0737084 UTC: D:\etmbms\vsprojects\profcppbook\ch31.ixx(132): void __cdecl ch31::exercises::ex4::trickyFunction(class ch31::exercises::ex4::ComplicatedClass *): retrieved cmd 1: UserCommand
2025-08-19 13:56:44.0741201 UTC: D:\etmbms\vsprojects\profcppbook\ch31.ixx(132): void __cdecl ch31::exercises::ex4::trickyFunction(class ch31::exercises::ex4::ComplicatedClass *): retrieved cmd 2: UserCommand
2025-08-19 13:56:44.0745422 UTC: D:\etmbms\vsprojects\profcppbook\ch31.ixx(132): void __cdecl ch31::exercises::ex4::trickyFunction(class ch31::exercises::ex4::ComplicatedClass *): retrieved cmd 3: UserCommand
2025-08-19 13:56:44.0749528 UTC: D:\etmbms\vsprojects\profcppbook\ch31.ixx(132): void __cdecl ch31::exercises::ex4::trickyFunction(class ch31::exercises::ex4::ComplicatedClass *): retrieved cmd 4: UserCommand
2025-08-19 13:56:44.0753582 UTC: D:\etmbms\vsprojects\profcppbook\ch31.ixx(132): void __cdecl ch31::exercises::ex4::trickyFunction(class ch31::exercises::ex4::ComplicatedClass *): retrieved cmd 5: UserCommand
2025-08-19 13:56:44.0758146 UTC: D:\etmbms\vsprojects\profcppbook\ch31.ixx(132): void __cdecl ch31::exercises::ex4::trickyFunction(class ch31::exercises::ex4::ComplicatedClass *): retrieved cmd 6: UserCommand
2025-08-19 13:56:44.0762362 UTC: D:\etmbms\vsprojects\profcppbook\ch31.ixx(132): void __cdecl ch31::exercises::ex4::trickyFunction(class ch31::exercises::ex4::ComplicatedClass *): retrieved cmd 7: UserCommand
2025-08-19 13:56:44.0766463 UTC: D:\etmbms\vsprojects\profcppbook\ch31.ixx(132): void __cdecl ch31::exercises::ex4::trickyFunction(class ch31::exercises::ex4::ComplicatedClass *): retrieved cmd 8: UserCommand
2025-08-19 13:56:44.0770777 UTC: D:\etmbms\vsprojects\profcppbook\ch31.ixx(132): void __cdecl ch31::exercises::ex4::trickyFunction(class ch31::exercises::ex4::ComplicatedClass *): retrieved cmd 9: UserCommand
2025-08-19 13:56:44.0775220 UTC: D:\etmbms\vsprojects\profcppbook\ch31.ixx(132): void __cdecl ch31::exercises::ex4::trickyFunction(class ch31::exercises::ex4::ComplicatedClass *): retrieved cmd 10: UserCommand
2025-08-19 13:56:44.0779258 UTC: D:\etmbms\vsprojects\profcppbook\ch31.ixx(132): void __cdecl ch31::exercises::ex4::trickyFunction(class ch31::exercises::ex4::ComplicatedClass *): retrieved cmd 11: UserCommand
2025-08-19 13:56:44.0783892 UTC: D:\etmbms\vsprojects\profcppbook\ch31.ixx(132): void __cdecl ch31::exercises::ex4::trickyFunction(class ch31::exercises::ex4::ComplicatedClass *): retrieved cmd 12: UserCommand
2025-08-19 13:56:44.0787896 UTC: D:\etmbms\vsprojects\profcppbook\ch31.ixx(132): void __cdecl ch31::exercises::ex4::trickyFunction(class ch31::exercises::ex4::ComplicatedClass *): retrieved cmd 13: UserCommand
2025-08-19 13:56:44.0792150 UTC: D:\etmbms\vsprojects\profcppbook\ch31.ixx(132): void __cdecl ch31::exercises::ex4::trickyFunction(class ch31::exercises::ex4::ComplicatedClass *): retrieved cmd 14: UserCommand
2025-08-19 13:56:44.0796500 UTC: D:\etmbms\vsprojects\profcppbook\ch31.ixx(132): void __cdecl ch31::exercises::ex4::trickyFunction(class ch31::exercises::ex4::ComplicatedClass *): retrieved cmd 15: UserCommand
2025-08-19 13:56:44.0800720 UTC: D:\etmbms\vsprojects\profcppbook\ch31.ixx(132): void __cdecl ch31::exercises::ex4::trickyFunction(class ch31::exercises::ex4::ComplicatedClass *): retrieved cmd 16: UserCommand
2025-08-19 13:56:44.0805072 UTC: D:\etmbms\vsprojects\profcppbook\ch31.ixx(132): void __cdecl ch31::exercises::ex4::trickyFunction(class ch31::exercises::ex4::ComplicatedClass *): retrieved cmd 17: UserCommand
2025-08-19 13:56:44.0809657 UTC: D:\etmbms\vsprojects\profcppbook\ch31.ixx(132): void __cdecl ch31::exercises::ex4::trickyFunction(class ch31::exercises::ex4::ComplicatedClass *): retrieved cmd 18: UserCommand
2025-08-19 13:56:44.0814454 UTC: D:\etmbms\vsprojects\profcppbook\ch31.ixx(132): void __cdecl ch31::exercises::ex4::trickyFunction(class ch31::exercises::ex4::ComplicatedClass *): retrieved cmd 19: UserCommand
2025-08-19 13:56:44.0818830 UTC: D:\etmbms\vsprojects\profcppbook\ch31.ixx(132): void __cdecl ch31::exercises::ex4::trickyFunction(class ch31::exercises::ex4::ComplicatedClass *): retrieved cmd 20: UserCommand
2025-08-19 13:56:44.0823730 UTC: D:\etmbms\vsprojects\profcppbook\ch31.ixx(132): void __cdecl ch31::exercises::ex4::trickyFunction(class ch31::exercises::ex4::ComplicatedClass *): retrieved cmd 21: UserCommand
2025-08-19 13:56:44.0831971 UTC: D:\etmbms\vsprojects\profcppbook\ch31.ixx(132): void __cdecl ch31::exercises::ex4::trickyFunction(class ch31::exercises::ex4::ComplicatedClass *): retrieved cmd 22: UserCommand
2025-08-19 13:56:44.0836196 UTC: D:\etmbms\vsprojects\profcppbook\ch31.ixx(132): void __cdecl ch31::exercises::ex4::trickyFunction(class ch31::exercises::ex4::ComplicatedClass *): retrieved cmd 23: UserCommand
2025-08-19 13:56:44.0842443 UTC: D:\etmbms\vsprojects\profcppbook\ch31.ixx(132): void __cdecl ch31::exercises::ex4::trickyFunction(class ch31::exercises::ex4::ComplicatedClass *): retrieved cmd 24: UserCommand
2025-08-19 13:56:44.0846741 UTC: D:\etmbms\vsprojects\profcppbook\ch31.ixx(132): void __cdecl ch31::exercises::ex4::trickyFunction(class ch31::exercises::ex4::ComplicatedClass *): retrieved cmd 25: UserCommand
2025-08-19 13:56:44.0850926 UTC: D:\etmbms\vsprojects\profcppbook\ch31.ixx(132): void __cdecl ch31::exercises::ex4::trickyFunction(class ch31::exercises::ex4::ComplicatedClass *): retrieved cmd 26: UserCommand
2025-08-19 13:56:44.0854963 UTC: D:\etmbms\vsprojects\profcppbook\ch31.ixx(132): void __cdecl ch31::exercises::ex4::trickyFunction(class ch31::exercises::ex4::ComplicatedClass *): retrieved cmd 27: UserCommand
2025-08-19 13:56:44.0858917 UTC: D:\etmbms\vsprojects\profcppbook\ch31.ixx(132): void __cdecl ch31::exercises::ex4::trickyFunction(class ch31::exercises::ex4::ComplicatedClass *): retrieved cmd 28: UserCommand
2025-08-19 13:56:44.0864560 UTC: D:\etmbms\vsprojects\profcppbook\ch31.ixx(132): void __cdecl ch31::exercises::ex4::trickyFunction(class ch31::exercises::ex4::ComplicatedClass *): retrieved cmd 29: UserCommand
2025-08-19 13:56:44.0871239 UTC: D:\etmbms\vsprojects\profcppbook\ch31.ixx(132): void __cdecl ch31::exercises::ex4::trickyFunction(class ch31::exercises::ex4::ComplicatedClass *): retrieved cmd 30: UserCommand
2025-08-19 13:56:44.0875533 UTC: D:\etmbms\vsprojects\profcppbook\ch31.ixx(132): void __cdecl ch31::exercises::ex4::trickyFunction(class ch31::exercises::ex4::ComplicatedClass *): retrieved cmd 31: UserCommand
2025-08-19 13:56:44.0879613 UTC: D:\etmbms\vsprojects\profcppbook\ch31.ixx(132): void __cdecl ch31::exercises::ex4::trickyFunction(class ch31::exercises::ex4::ComplicatedClass *): retrieved cmd 32: UserCommand
2025-08-19 13:56:44.0884742 UTC: D:\etmbms\vsprojects\profcppbook\ch31.ixx(132): void __cdecl ch31::exercises::ex4::trickyFunction(class ch31::exercises::ex4::ComplicatedClass *): retrieved cmd 33: UserCommand
2025-08-19 13:56:44.0888842 UTC: D:\etmbms\vsprojects\profcppbook\ch31.ixx(132): void __cdecl ch31::exercises::ex4::trickyFunction(class ch31::exercises::ex4::ComplicatedClass *): retrieved cmd 34: UserCommand
2025-08-19 13:56:44.0894074 UTC: D:\etmbms\vsprojects\profcppbook\ch31.ixx(132): void __cdecl ch31::exercises::ex4::trickyFunction(class ch31::exercises::ex4::ComplicatedClass *): retrieved cmd 35: UserCommand
2025-08-19 13:56:44.0899514 UTC: D:\etmbms\vsprojects\profcppbook\ch31.ixx(132): void __cdecl ch31::exercises::ex4::trickyFunction(class ch31::exercises::ex4::ComplicatedClass *): retrieved cmd 36: UserCommand
2025-08-19 13:56:44.0904246 UTC: D:\etmbms\vsprojects\profcppbook\ch31.ixx(132): void __cdecl ch31::exercises::ex4::trickyFunction(class ch31::exercises::ex4::ComplicatedClass *): retrieved cmd 37: UserCommand
2025-08-19 13:56:44.0908480 UTC: D:\etmbms\vsprojects\profcppbook\ch31.ixx(132): void __cdecl ch31::exercises::ex4::trickyFunction(class ch31::exercises::ex4::ComplicatedClass *): retrieved cmd 38: UserCommand
2025-08-19 13:56:44.0912634 UTC: D:\etmbms\vsprojects\profcppbook\ch31.ixx(132): void __cdecl ch31::exercises::ex4::trickyFunction(class ch31::exercises::ex4::ComplicatedClass *): retrieved cmd 39: UserCommand
2025-08-19 13:56:44.0916673 UTC: D:\etmbms\vsprojects\profcppbook\ch31.ixx(132): void __cdecl ch31::exercises::ex4::trickyFunction(class ch31::exercises::ex4::ComplicatedClass *): retrieved cmd 40: UserCommand
2025-08-19 13:56:44.0920995 UTC: D:\etmbms\vsprojects\profcppbook\ch31.ixx(132): void __cdecl ch31::exercises::ex4::trickyFunction(class ch31::exercises::ex4::ComplicatedClass *): retrieved cmd 41: UserCommand
2025-08-19 13:56:44.0925548 UTC: D:\etmbms\vsprojects\profcppbook\ch31.ixx(132): void __cdecl ch31::exercises::ex4::trickyFunction(class ch31::exercises::ex4::ComplicatedClass *): retrieved cmd 42: UserCommand
2025-08-19 13:56:44.0929724 UTC: D:\etmbms\vsprojects\profcppbook\ch31.ixx(132): void __cdecl ch31::exercises::ex4::trickyFunction(class ch31::exercises::ex4::ComplicatedClass *): retrieved cmd 43: UserCommand
2025-08-19 13:56:44.0934031 UTC: D:\etmbms\vsprojects\profcppbook\ch31.ixx(132): void __cdecl ch31::exercises::ex4::trickyFunction(class ch31::exercises::ex4::ComplicatedClass *): retrieved cmd 44: UserCommand
2025-08-19 13:56:44.0938733 UTC: D:\etmbms\vsprojects\profcppbook\ch31.ixx(132): void __cdecl ch31::exercises::ex4::trickyFunction(class ch31::exercises::ex4::ComplicatedClass *): retrieved cmd 45: UserCommand
2025-08-19 13:56:44.0943113 UTC: D:\etmbms\vsprojects\profcppbook\ch31.ixx(132): void __cdecl ch31::exercises::ex4::trickyFunction(class ch31::exercises::ex4::ComplicatedClass *): retrieved cmd 46: UserCommand
2025-08-19 13:56:44.0947588 UTC: D:\etmbms\vsprojects\profcppbook\ch31.ixx(132): void __cdecl ch31::exercises::ex4::trickyFunction(class ch31::exercises::ex4::ComplicatedClass *): retrieved cmd 47: UserCommand
2025-08-19 13:56:44.0951972 UTC: D:\etmbms\vsprojects\profcppbook\ch31.ixx(132): void __cdecl ch31::exercises::ex4::trickyFunction(class ch31::exercises::ex4::ComplicatedClass *): retrieved cmd 48: UserCommand
2025-08-19 13:56:44.0956402 UTC: D:\etmbms\vsprojects\profcppbook\ch31.ixx(132): void __cdecl ch31::exercises::ex4::trickyFunction(class ch31::exercises::ex4::ComplicatedClass *): retrieved cmd 49: UserCommand
2025-08-19 13:56:44.0961328 UTC: D:\etmbms\vsprojects\profcppbook\ch31.ixx(132): void __cdecl ch31::exercises::ex4::trickyFunction(class ch31::exercises::ex4::ComplicatedClass *): retrieved cmd 50: UserCommand
2025-08-19 13:56:44.0965660 UTC: D:\etmbms\vsprojects\profcppbook\ch31.ixx(132): void __cdecl ch31::exercises::ex4::trickyFunction(class ch31::exercises::ex4::ComplicatedClass *): retrieved cmd 51: UserCommand
2025-08-19 13:56:44.0969790 UTC: D:\etmbms\vsprojects\profcppbook\ch31.ixx(132): void __cdecl ch31::exercises::ex4::trickyFunction(class ch31::exercises::ex4::ComplicatedClass *): retrieved cmd 52: UserCommand
2025-08-19 13:56:44.0973779 UTC: D:\etmbms\vsprojects\profcppbook\ch31.ixx(132): void __cdecl ch31::exercises::ex4::trickyFunction(class ch31::exercises::ex4::ComplicatedClass *): retrieved cmd 53: UserCommand
2025-08-19 13:56:44.0977790 UTC: D:\etmbms\vsprojects\profcppbook\ch31.ixx(132): void __cdecl ch31::exercises::ex4::trickyFunction(class ch31::exercises::ex4::ComplicatedClass *): retrieved cmd 54: UserCommand
2025-08-19 13:56:44.0982025 UTC: D:\etmbms\vsprojects\profcppbook\ch31.ixx(132): void __cdecl ch31::exercises::ex4::trickyFunction(class ch31::exercises::ex4::ComplicatedClass *): retrieved cmd 55: UserCommand
2025-08-19 13:56:44.0986230 UTC: D:\etmbms\vsprojects\profcppbook\ch31.ixx(132): void __cdecl ch31::exercises::ex4::trickyFunction(class ch31::exercises::ex4::ComplicatedClass *): retrieved cmd 56: UserCommand
2025-08-19 13:56:44.0990164 UTC: D:\etmbms\vsprojects\profcppbook\ch31.ixx(132): void __cdecl ch31::exercises::ex4::trickyFunction(class ch31::exercises::ex4::ComplicatedClass *): retrieved cmd 57: UserCommand
2025-08-19 13:56:44.0994127 UTC: D:\etmbms\vsprojects\profcppbook\ch31.ixx(132): void __cdecl ch31::exercises::ex4::trickyFunction(class ch31::exercises::ex4::ComplicatedClass *): retrieved cmd 58: UserCommand
2025-08-19 13:56:44.0997969 UTC: D:\etmbms\vsprojects\profcppbook\ch31.ixx(132): void __cdecl ch31::exercises::ex4::trickyFunction(class ch31::exercises::ex4::ComplicatedClass *): retrieved cmd 59: UserCommand
2025-08-19 13:56:44.1002107 UTC: D:\etmbms\vsprojects\profcppbook\ch31.ixx(132): void __cdecl ch31::exercises::ex4::trickyFunction(class ch31::exercises::ex4::ComplicatedClass *): retrieved cmd 60: UserCommand
2025-08-19 13:56:44.1006177 UTC: D:\etmbms\vsprojects\profcppbook\ch31.ixx(132): void __cdecl ch31::exercises::ex4::trickyFunction(class ch31::exercises::ex4::ComplicatedClass *): retrieved cmd 61: UserCommand
2025-08-19 13:56:44.1010252 UTC: D:\etmbms\vsprojects\profcppbook\ch31.ixx(132): void __cdecl ch31::exercises::ex4::trickyFunction(class ch31::exercises::ex4::ComplicatedClass *): retrieved cmd 62: UserCommand
2025-08-19 13:56:44.1014259 UTC: D:\etmbms\vsprojects\profcppbook\ch31.ixx(132): void __cdecl ch31::exercises::ex4::trickyFunction(class ch31::exercises::ex4::ComplicatedClass *): retrieved cmd 63: UserCommand
2025-08-19 13:56:44.1018492 UTC: D:\etmbms\vsprojects\profcppbook\ch31.ixx(132): void __cdecl ch31::exercises::ex4::trickyFunction(class ch31::exercises::ex4::ComplicatedClass *): retrieved cmd 64: UserCommand
2025-08-19 13:56:44.1022549 UTC: D:\etmbms\vsprojects\profcppbook\ch31.ixx(132): void __cdecl ch31::exercises::ex4::trickyFunction(class ch31::exercises::ex4::ComplicatedClass *): retrieved cmd 65: UserCommand
2025-08-19 13:56:44.1026595 UTC: D:\etmbms\vsprojects\profcppbook\ch31.ixx(132): void __cdecl ch31::exercises::ex4::trickyFunction(class ch31::exercises::ex4::ComplicatedClass *): retrieved cmd 66: UserCommand
2025-08-19 13:56:44.1030659 UTC: D:\etmbms\vsprojects\profcppbook\ch31.ixx(132): void __cdecl ch31::exercises::ex4::trickyFunction(class ch31::exercises::ex4::ComplicatedClass *): retrieved cmd 67: UserCommand
2025-08-19 13:56:44.1034851 UTC: D:\etmbms\vsprojects\profcppbook\ch31.ixx(132): void __cdecl ch31::exercises::ex4::trickyFunction(class ch31::exercises::ex4::ComplicatedClass *): retrieved cmd 68: UserCommand
2025-08-19 13:56:44.1039086 UTC: D:\etmbms\vsprojects\profcppbook\ch31.ixx(132): void __cdecl ch31::exercises::ex4::trickyFunction(class ch31::exercises::ex4::ComplicatedClass *): retrieved cmd 69: UserCommand
2025-08-19 13:56:44.1043338 UTC: D:\etmbms\vsprojects\profcppbook\ch31.ixx(132): void __cdecl ch31::exercises::ex4::trickyFunction(class ch31::exercises::ex4::ComplicatedClass *): retrieved cmd 70: UserCommand
2025-08-19 13:56:44.1047415 UTC: D:\etmbms\vsprojects\profcppbook\ch31.ixx(132): void __cdecl ch31::exercises::ex4::trickyFunction(class ch31::exercises::ex4::ComplicatedClass *): retrieved cmd 71: UserCommand
2025-08-19 13:56:44.1052236 UTC: D:\etmbms\vsprojects\profcppbook\ch31.ixx(132): void __cdecl ch31::exercises::ex4::trickyFunction(class ch31::exercises::ex4::ComplicatedClass *): retrieved cmd 72: UserCommand
2025-08-19 13:56:44.1059157 UTC: D:\etmbms\vsprojects\profcppbook\ch31.ixx(132): void __cdecl ch31::exercises::ex4::trickyFunction(class ch31::exercises::ex4::ComplicatedClass *): retrieved cmd 73: UserCommand
2025-08-19 13:56:44.1063862 UTC: D:\etmbms\vsprojects\profcppbook\ch31.ixx(132): void __cdecl ch31::exercises::ex4::trickyFunction(class ch31::exercises::ex4::ComplicatedClass *): retrieved cmd 74: UserCommand
2025-08-19 13:56:44.1068418 UTC: D:\etmbms\vsprojects\profcppbook\ch31.ixx(132): void __cdecl ch31::exercises::ex4::trickyFunction(class ch31::exercises::ex4::ComplicatedClass *): retrieved cmd 75: UserCommand
2025-08-19 13:56:44.1072761 UTC: D:\etmbms\vsprojects\profcppbook\ch31.ixx(132): void __cdecl ch31::exercises::ex4::trickyFunction(class ch31::exercises::ex4::ComplicatedClass *): retrieved cmd 76: UserCommand
2025-08-19 13:56:44.1076945 UTC: D:\etmbms\vsprojects\profcppbook\ch31.ixx(132): void __cdecl ch31::exercises::ex4::trickyFunction(class ch31::exercises::ex4::ComplicatedClass *): retrieved cmd 77: UserCommand
2025-08-19 13:56:44.1081384 UTC: D:\etmbms\vsprojects\profcppbook\ch31.ixx(132): void __cdecl ch31::exercises::ex4::trickyFunction(class ch31::exercises::ex4::ComplicatedClass *): retrieved cmd 78: UserCommand
2025-08-19 13:56:44.1085632 UTC: D:\etmbms\vsprojects\profcppbook\ch31.ixx(132): void __cdecl ch31::exercises::ex4::trickyFunction(class ch31::exercises::ex4::ComplicatedClass *): retrieved cmd 79: UserCommand
2025-08-19 13:56:44.1090734 UTC: D:\etmbms\vsprojects\profcppbook\ch31.ixx(132): void __cdecl ch31::exercises::ex4::trickyFunction(class ch31::exercises::ex4::ComplicatedClass *): retrieved cmd 80: UserCommand
2025-08-19 13:56:44.1095514 UTC: D:\etmbms\vsprojects\profcppbook\ch31.ixx(132): void __cdecl ch31::exercises::ex4::trickyFunction(class ch31::exercises::ex4::ComplicatedClass *): retrieved cmd 81: UserCommand
2025-08-19 13:56:44.1099614 UTC: D:\etmbms\vsprojects\profcppbook\ch31.ixx(132): void __cdecl ch31::exercises::ex4::trickyFunction(class ch31::exercises::ex4::ComplicatedClass *): retrieved cmd 82: UserCommand
2025-08-19 13:56:44.1104066 UTC: D:\etmbms\vsprojects\profcppbook\ch31.ixx(132): void __cdecl ch31::exercises::ex4::trickyFunction(class ch31::exercises::ex4::ComplicatedClass *): retrieved cmd 83: UserCommand
2025-08-19 13:56:44.1108145 UTC: D:\etmbms\vsprojects\profcppbook\ch31.ixx(132): void __cdecl ch31::exercises::ex4::trickyFunction(class ch31::exercises::ex4::ComplicatedClass *): retrieved cmd 84: UserCommand
2025-08-19 13:56:44.1112021 UTC: D:\etmbms\vsprojects\profcppbook\ch31.ixx(132): void __cdecl ch31::exercises::ex4::trickyFunction(class ch31::exercises::ex4::ComplicatedClass *): retrieved cmd 85: UserCommand
2025-08-19 13:56:44.1116846 UTC: D:\etmbms\vsprojects\profcppbook\ch31.ixx(132): void __cdecl ch31::exercises::ex4::trickyFunction(class ch31::exercises::ex4::ComplicatedClass *): retrieved cmd 86: UserCommand
2025-08-19 13:56:44.1120968 UTC: D:\etmbms\vsprojects\profcppbook\ch31.ixx(132): void __cdecl ch31::exercises::ex4::trickyFunction(class ch31::exercises::ex4::ComplicatedClass *): retrieved cmd 87: UserCommand
2025-08-19 13:56:44.1125467 UTC: D:\etmbms\vsprojects\profcppbook\ch31.ixx(132): void __cdecl ch31::exercises::ex4::trickyFunction(class ch31::exercises::ex4::ComplicatedClass *): retrieved cmd 88: UserCommand
2025-08-19 13:56:44.1129548 UTC: D:\etmbms\vsprojects\profcppbook\ch31.ixx(132): void __cdecl ch31::exercises::ex4::trickyFunction(class ch31::exercises::ex4::ComplicatedClass *): retrieved cmd 89: UserCommand
2025-08-19 13:56:44.1133795 UTC: D:\etmbms\vsprojects\profcppbook\ch31.ixx(132): void __cdecl ch31::exercises::ex4::trickyFunction(class ch31::exercises::ex4::ComplicatedClass *): retrieved cmd 90: UserCommand
2025-08-19 13:56:44.1137577 UTC: D:\etmbms\vsprojects\profcppbook\ch31.ixx(132): void __cdecl ch31::exercises::ex4::trickyFunction(class ch31::exercises::ex4::ComplicatedClass *): retrieved cmd 91: UserCommand
2025-08-19 13:56:44.1141241 UTC: D:\etmbms\vsprojects\profcppbook\ch31.ixx(132): void __cdecl ch31::exercises::ex4::trickyFunction(class ch31::exercises::ex4::ComplicatedClass *): retrieved cmd 92: UserCommand
2025-08-19 13:56:44.1145092 UTC: D:\etmbms\vsprojects\profcppbook\ch31.ixx(132): void __cdecl ch31::exercises::ex4::trickyFunction(class ch31::exercises::ex4::ComplicatedClass *): retrieved cmd 93: UserCommand
2025-08-19 13:56:44.1149488 UTC: D:\etmbms\vsprojects\profcppbook\ch31.ixx(132): void __cdecl ch31::exercises::ex4::trickyFunction(class ch31::exercises::ex4::ComplicatedClass *): retrieved cmd 94: UserCommand
2025-08-19 13:56:44.1153309 UTC: D:\etmbms\vsprojects\profcppbook\ch31.ixx(132): void __cdecl ch31::exercises::ex4::trickyFunction(class ch31::exercises::ex4::ComplicatedClass *): retrieved cmd 95: UserCommand
2025-08-19 13:56:44.1157412 UTC: D:\etmbms\vsprojects\profcppbook\ch31.ixx(132): void __cdecl ch31::exercises::ex4::trickyFunction(class ch31::exercises::ex4::ComplicatedClass *): retrieved cmd 96: UserCommand
2025-08-19 13:56:44.1161983 UTC: D:\etmbms\vsprojects\profcppbook\ch31.ixx(132): void __cdecl ch31::exercises::ex4::trickyFunction(class ch31::exercises::ex4::ComplicatedClass *): retrieved cmd 97: UserCommand
2025-08-19 13:56:44.1166077 UTC: D:\etmbms\vsprojects\profcppbook\ch31.ixx(132): void __cdecl ch31::exercises::ex4::trickyFunction(class ch31::exercises::ex4::ComplicatedClass *): retrieved cmd 98: UserCommand
2025-08-19 13:56:44.1169842 UTC: D:\etmbms\vsprojects\profcppbook\ch31.ixx(132): void __cdecl ch31::exercises::ex4::trickyFunction(class ch31::exercises::ex4::ComplicatedClass *): retrieved cmd 99: UserCommand
2025-08-19 14:02:39.6851952 UTC: D:\etmbms\vsprojects\profcppbook\ch31.ixx(150): void __cdecl ch31::exercises::ex4::test(int,char **): Argument: D:\etmbms\vsprojects\profcppbook\x64\Debug\profcppbook.exe
2025-08-19 14:02:39.6877143 UTC: D:\etmbms\vsprojects\profcppbook\ch31.ixx(150): void __cdecl ch31::exercises::ex4::test(int,char **): Argument: -d
2025-08-19 14:02:39.6881588 UTC: D:\etmbms\vsprojects\profcppbook\ch31.ixx(128): void __cdecl ch31::exercises::ex4::trickyFunction(class ch31::exercises::ex4::ComplicatedClass *): given argument: ComplicatedClass
2025-08-19 14:02:39.6886897 UTC: D:\etmbms\vsprojects\profcppbook\ch31.ixx(132): void __cdecl ch31::exercises::ex4::trickyFunction(class ch31::exercises::ex4::ComplicatedClass *): retrieved cmd 0: UserCommand
2025-08-19 14:02:39.6891569 UTC: D:\etmbms\vsprojects\profcppbook\ch31.ixx(132): void __cdecl ch31::exercises::ex4::trickyFunction(class ch31::exercises::ex4::ComplicatedClass *): retrieved cmd 1: UserCommand
2025-08-19 14:02:39.6896023 UTC: D:\etmbms\vsprojects\profcppbook\ch31.ixx(132): void __cdecl ch31::exercises::ex4::trickyFunction(class ch31::exercises::ex4::ComplicatedClass *): retrieved cmd 2: UserCommand
2025-08-19 14:02:39.6900436 UTC: D:\etmbms\vsprojects\profcppbook\ch31.ixx(132): void __cdecl ch31::exercises::ex4::trickyFunction(class ch31::exercises::ex4::ComplicatedClass *): retrieved cmd 3: UserCommand
2025-08-19 14:02:39.6904432 UTC: D:\etmbms\vsprojects\profcppbook\ch31.ixx(132): void __cdecl ch31::exercises::ex4::trickyFunction(class ch31::exercises::ex4::ComplicatedClass *): retrieved cmd 4: UserCommand
2025-08-19 14:02:39.6908351 UTC: D:\etmbms\vsprojects\profcppbook\ch31.ixx(132): void __cdecl ch31::exercises::ex4::trickyFunction(class ch31::exercises::ex4::ComplicatedClass *): retrieved cmd 5: UserCommand
2025-08-19 14:02:39.6912261 UTC: D:\etmbms\vsprojects\profcppbook\ch31.ixx(132): void __cdecl ch31::exercises::ex4::trickyFunction(class ch31::exercises::ex4::ComplicatedClass *): retrieved cmd 6: UserCommand
2025-08-19 14:02:39.6916169 UTC: D:\etmbms\vsprojects\profcppbook\ch31.ixx(132): void __cdecl ch31::exercises::ex4::trickyFunction(class ch31::exercises::ex4::ComplicatedClass *): retrieved cmd 7: UserCommand
2025-08-19 14:02:39.6920392 UTC: D:\etmbms\vsprojects\profcppbook\ch31.ixx(132): void __cdecl ch31::exercises::ex4::trickyFunction(class ch31::exercises::ex4::ComplicatedClass *): retrieved cmd 8: UserCommand
2025-08-19 14:02:39.6924223 UTC: D:\etmbms\vsprojects\profcppbook\ch31.ixx(132): void __cdecl ch31::exercises::ex4::trickyFunction(class ch31::exercises::ex4::ComplicatedClass *): retrieved cmd 9: UserCommand
2025-08-19 14:02:39.6928008 UTC: D:\etmbms\vsprojects\profcppbook\ch31.ixx(132): void __cdecl ch31::exercises::ex4::trickyFunction(class ch31::exercises::ex4::ComplicatedClass *): retrieved cmd 10: UserCommand
2025-08-19 14:02:39.6931683 UTC: D:\etmbms\vsprojects\profcppbook\ch31.ixx(132): void __cdecl ch31::exercises::ex4::trickyFunction(class ch31::exercises::ex4::ComplicatedClass *): retrieved cmd 11: UserCommand
2025-08-19 14:02:39.6935586 UTC: D:\etmbms\vsprojects\profcppbook\ch31.ixx(132): void __cdecl ch31::exercises::ex4::trickyFunction(class ch31::exercises::ex4::ComplicatedClass *): retrieved cmd 12: UserCommand
2025-08-19 14:02:39.6939405 UTC: D:\etmbms\vsprojects\profcppbook\ch31.ixx(132): void __cdecl ch31::exercises::ex4::trickyFunction(class ch31::exercises::ex4::ComplicatedClass *): retrieved cmd 13: UserCommand
2025-08-19 14:02:39.6943371 UTC: D:\etmbms\vsprojects\profcppbook\ch31.ixx(132): void __cdecl ch31::exercises::ex4::trickyFunction(class ch31::exercises::ex4::ComplicatedClass *): retrieved cmd 14: UserCommand
2025-08-19 14:02:39.6947432 UTC: D:\etmbms\vsprojects\profcppbook\ch31.ixx(132): void __cdecl ch31::exercises::ex4::trickyFunction(class ch31::exercises::ex4::ComplicatedClass *): retrieved cmd 15: UserCommand
2025-08-19 14:02:39.6951375 UTC: D:\etmbms\vsprojects\profcppbook\ch31.ixx(132): void __cdecl ch31::exercises::ex4::trickyFunction(class ch31::exercises::ex4::ComplicatedClass *): retrieved cmd 16: UserCommand
2025-08-19 14:02:39.6955309 UTC: D:\etmbms\vsprojects\profcppbook\ch31.ixx(132): void __cdecl ch31::exercises::ex4::trickyFunction(class ch31::exercises::ex4::ComplicatedClass *): retrieved cmd 17: UserCommand
2025-08-19 14:02:39.6959490 UTC: D:\etmbms\vsprojects\profcppbook\ch31.ixx(132): void __cdecl ch31::exercises::ex4::trickyFunction(class ch31::exercises::ex4::ComplicatedClass *): retrieved cmd 18: UserCommand
2025-08-19 14:02:39.6963596 UTC: D:\etmbms\vsprojects\profcppbook\ch31.ixx(132): void __cdecl ch31::exercises::ex4::trickyFunction(class ch31::exercises::ex4::ComplicatedClass *): retrieved cmd 19: UserCommand
2025-08-19 14:02:39.6967962 UTC: D:\etmbms\vsprojects\profcppbook\ch31.ixx(132): void __cdecl ch31::exercises::ex4::trickyFunction(class ch31::exercises::ex4::ComplicatedClass *): retrieved cmd 20: UserCommand
2025-08-19 14:02:39.6972211 UTC: D:\etmbms\vsprojects\profcppbook\ch31.ixx(132): void __cdecl ch31::exercises::ex4::trickyFunction(class ch31::exercises::ex4::ComplicatedClass *): retrieved cmd 21: UserCommand
2025-08-19 14:02:39.6976331 UTC: D:\etmbms\vsprojects\profcppbook\ch31.ixx(132): void __cdecl ch31::exercises::ex4::trickyFunction(class ch31::exercises::ex4::ComplicatedClass *): retrieved cmd 22: UserCommand
2025-08-19 14:02:39.6980509 UTC: D:\etmbms\vsprojects\profcppbook\ch31.ixx(132): void __cdecl ch31::exercises::ex4::trickyFunction(class ch31::exercises::ex4::ComplicatedClass *): retrieved cmd 23: UserCommand
2025-08-19 14:02:39.6984518 UTC: D:\etmbms\vsprojects\profcppbook\ch31.ixx(132): void __cdecl ch31::exercises::ex4::trickyFunction(class ch31::exercises::ex4::ComplicatedClass *): retrieved cmd 24: UserCommand
2025-08-19 14:02:39.6988543 UTC: D:\etmbms\vsprojects\profcppbook\ch31.ixx(132): void __cdecl ch31::exercises::ex4::trickyFunction(class ch31::exercises::ex4::ComplicatedClass *): retrieved cmd 25: UserCommand
2025-08-19 14:02:39.6992492 UTC: D:\etmbms\vsprojects\profcppbook\ch31.ixx(132): void __cdecl ch31::exercises::ex4::trickyFunction(class ch31::exercises::ex4::ComplicatedClass *): retrieved cmd 26: UserCommand
2025-08-19 14:02:39.6996400 UTC: D:\etmbms\vsprojects\profcppbook\ch31.ixx(132): void __cdecl ch31::exercises::ex4::trickyFunction(class ch31::exercises::ex4::ComplicatedClass *): retrieved cmd 27: UserCommand
2025-08-19 14:02:39.7000479 UTC: D:\etmbms\vsprojects\profcppbook\ch31.ixx(132): void __cdecl ch31::exercises::ex4::trickyFunction(class ch31::exercises::ex4::ComplicatedClass *): retrieved cmd 28: UserCommand
2025-08-19 14:02:39.7004422 UTC: D:\etmbms\vsprojects\profcppbook\ch31.ixx(132): void __cdecl ch31::exercises::ex4::trickyFunction(class ch31::exercises::ex4::ComplicatedClass *): retrieved cmd 29: UserCommand
2025-08-19 14:02:39.7008200 UTC: D:\etmbms\vsprojects\profcppbook\ch31.ixx(132): void __cdecl ch31::exercises::ex4::trickyFunction(class ch31::exercises::ex4::ComplicatedClass *): retrieved cmd 30: UserCommand
2025-08-19 14:02:39.7012244 UTC: D:\etmbms\vsprojects\profcppbook\ch31.ixx(132): void __cdecl ch31::exercises::ex4::trickyFunction(class ch31::exercises::ex4::ComplicatedClass *): retrieved cmd 31: UserCommand
2025-08-19 14:02:39.7016249 UTC: D:\etmbms\vsprojects\profcppbook\ch31.ixx(132): void __cdecl ch31::exercises::ex4::trickyFunction(class ch31::exercises::ex4::ComplicatedClass *): retrieved cmd 32: UserCommand
2025-08-19 14:02:39.7020445 UTC: D:\etmbms\vsprojects\profcppbook\ch31.ixx(132): void __cdecl ch31::exercises::ex4::trickyFunction(class ch31::exercises::ex4::ComplicatedClass *): retrieved cmd 33: UserCommand
2025-08-19 14:02:39.7024388 UTC: D:\etmbms\vsprojects\profcppbook\ch31.ixx(132): void __cdecl ch31::exercises::ex4::trickyFunction(class ch31::exercises::ex4::ComplicatedClass *): retrieved cmd 34: UserCommand
2025-08-19 14:02:39.7028293 UTC: D:\etmbms\vsprojects\profcppbook\ch31.ixx(132): void __cdecl ch31::exercises::ex4::trickyFunction(class ch31::exercises::ex4::ComplicatedClass *): retrieved cmd 35: UserCommand
2025-08-19 14:02:39.7032300 UTC: D:\etmbms\vsprojects\profcppbook\ch31.ixx(132): void __cdecl ch31::exercises::ex4::trickyFunction(class ch31::exercises::ex4::ComplicatedClass *): retrieved cmd 36: UserCommand
2025-08-19 14:02:39.7036594 UTC: D:\etmbms\vsprojects\profcppbook\ch31.ixx(132): void __cdecl ch31::exercises::ex4::trickyFunction(class ch31::exercises::ex4::ComplicatedClass *): retrieved cmd 37: UserCommand
2025-08-19 14:02:39.7041158 UTC: D:\etmbms\vsprojects\profcppbook\ch31.ixx(132): void __cdecl ch31::exercises::ex4::trickyFunction(class ch31::exercises::ex4::ComplicatedClass *): retrieved cmd 38: UserCommand
2025-08-19 14:02:39.7045562 UTC: D:\etmbms\vsprojects\profcppbook\ch31.ixx(132): void __cdecl ch31::exercises::ex4::trickyFunction(class ch31::exercises::ex4::ComplicatedClass *): retrieved cmd 39: UserCommand
2025-08-19 14:02:39.7049536 UTC: D:\etmbms\vsprojects\profcppbook\ch31.ixx(132): void __cdecl ch31::exercises::ex4::trickyFunction(class ch31::exercises::ex4::ComplicatedClass *): retrieved cmd 40: UserCommand
2025-08-19 14:02:39.7053422 UTC: D:\etmbms\vsprojects\profcppbook\ch31.ixx(132): void __cdecl ch31::exercises::ex4::trickyFunction(class ch31::exercises::ex4::ComplicatedClass *): retrieved cmd 41: UserCommand
2025-08-19 14:02:39.7057459 UTC: D:\etmbms\vsprojects\profcppbook\ch31.ixx(132): void __cdecl ch31::exercises::ex4::trickyFunction(class ch31::exercises::ex4::ComplicatedClass *): retrieved cmd 42: UserCommand
2025-08-19 14:02:39.7063273 UTC: D:\etmbms\vsprojects\profcppbook\ch31.ixx(132): void __cdecl ch31::exercises::ex4::trickyFunction(class ch31::exercises::ex4::ComplicatedClass *): retrieved cmd 43: UserCommand
2025-08-19 14:02:39.7069502 UTC: D:\etmbms\vsprojects\profcppbook\ch31.ixx(132): void __cdecl ch31::exercises::ex4::trickyFunction(class ch31::exercises::ex4::ComplicatedClass *): retrieved cmd 44: UserCommand
2025-08-19 14:02:39.7073989 UTC: D:\etmbms\vsprojects\profcppbook\ch31.ixx(132): void __cdecl ch31::exercises::ex4::trickyFunction(class ch31::exercises::ex4::ComplicatedClass *): retrieved cmd 45: UserCommand
2025-08-19 14:02:39.7078656 UTC: D:\etmbms\vsprojects\profcppbook\ch31.ixx(132): void __cdecl ch31::exercises::ex4::trickyFunction(class ch31::exercises::ex4::ComplicatedClass *): retrieved cmd 46: UserCommand
2025-08-19 14:02:39.7082838 UTC: D:\etmbms\vsprojects\profcppbook\ch31.ixx(132): void __cdecl ch31::exercises::ex4::trickyFunction(class ch31::exercises::ex4::ComplicatedClass *): retrieved cmd 47: UserCommand
2025-08-19 14:02:39.7087052 UTC: D:\etmbms\vsprojects\profcppbook\ch31.ixx(132): void __cdecl ch31::exercises::ex4::trickyFunction(class ch31::exercises::ex4::ComplicatedClass *): retrieved cmd 48: UserCommand
2025-08-19 14:02:39.7092159 UTC: D:\etmbms\vsprojects\profcppbook\ch31.ixx(132): void __cdecl ch31::exercises::ex4::trickyFunction(class ch31::exercises::ex4::ComplicatedClass *): retrieved cmd 49: UserCommand
2025-08-19 14:02:39.7096993 UTC: D:\etmbms\vsprojects\profcppbook\ch31.ixx(132): void __cdecl ch31::exercises::ex4::trickyFunction(class ch31::exercises::ex4::ComplicatedClass *): retrieved cmd 50: UserCommand
2025-08-19 14:02:39.7101183 UTC: D:\etmbms\vsprojects\profcppbook\ch31.ixx(132): void __cdecl ch31::exercises::ex4::trickyFunction(class ch31::exercises::ex4::ComplicatedClass *): retrieved cmd 51: UserCommand
2025-08-19 14:02:39.7105382 UTC: D:\etmbms\vsprojects\profcppbook\ch31.ixx(132): void __cdecl ch31::exercises::ex4::trickyFunction(class ch31::exercises::ex4::ComplicatedClass *): retrieved cmd 52: UserCommand
2025-08-19 14:02:39.7109421 UTC: D:\etmbms\vsprojects\profcppbook\ch31.ixx(132): void __cdecl ch31::exercises::ex4::trickyFunction(class ch31::exercises::ex4::ComplicatedClass *): retrieved cmd 53: UserCommand
2025-08-19 14:02:39.7113664 UTC: D:\etmbms\vsprojects\profcppbook\ch31.ixx(132): void __cdecl ch31::exercises::ex4::trickyFunction(class ch31::exercises::ex4::ComplicatedClass *): retrieved cmd 54: UserCommand
2025-08-19 14:02:39.7117924 UTC: D:\etmbms\vsprojects\profcppbook\ch31.ixx(132): void __cdecl ch31::exercises::ex4::trickyFunction(class ch31::exercises::ex4::ComplicatedClass *): retrieved cmd 55: UserCommand
2025-08-19 14:02:39.7122586 UTC: D:\etmbms\vsprojects\profcppbook\ch31.ixx(132): void __cdecl ch31::exercises::ex4::trickyFunction(class ch31::exercises::ex4::ComplicatedClass *): retrieved cmd 56: UserCommand
2025-08-19 14:02:39.7126905 UTC: D:\etmbms\vsprojects\profcppbook\ch31.ixx(132): void __cdecl ch31::exercises::ex4::trickyFunction(class ch31::exercises::ex4::ComplicatedClass *): retrieved cmd 57: UserCommand
2025-08-19 14:02:39.7131176 UTC: D:\etmbms\vsprojects\profcppbook\ch31.ixx(132): void __cdecl ch31::exercises::ex4::trickyFunction(class ch31::exercises::ex4::ComplicatedClass *): retrieved cmd 58: UserCommand
2025-08-19 14:02:39.7135637 UTC: D:\etmbms\vsprojects\profcppbook\ch31.ixx(132): void __cdecl ch31::exercises::ex4::trickyFunction(class ch31::exercises::ex4::ComplicatedClass *): retrieved cmd 59: UserCommand
2025-08-19 14:02:39.7139767 UTC: D:\etmbms\vsprojects\profcppbook\ch31.ixx(132): void __cdecl ch31::exercises::ex4::trickyFunction(class ch31::exercises::ex4::ComplicatedClass *): retrieved cmd 60: UserCommand
2025-08-19 14:02:39.7143691 UTC: D:\etmbms\vsprojects\profcppbook\ch31.ixx(132): void __cdecl ch31::exercises::ex4::trickyFunction(class ch31::exercises::ex4::ComplicatedClass *): retrieved cmd 61: UserCommand
2025-08-19 14:02:39.7147691 UTC: D:\etmbms\vsprojects\profcppbook\ch31.ixx(132): void __cdecl ch31::exercises::ex4::trickyFunction(class ch31::exercises::ex4::ComplicatedClass *): retrieved cmd 62: UserCommand
2025-08-19 14:02:39.7151669 UTC: D:\etmbms\vsprojects\profcppbook\ch31.ixx(132): void __cdecl ch31::exercises::ex4::trickyFunction(class ch31::exercises::ex4::ComplicatedClass *): retrieved cmd 63: UserCommand
2025-08-19 14:02:39.7155661 UTC: D:\etmbms\vsprojects\profcppbook\ch31.ixx(132): void __cdecl ch31::exercises::ex4::trickyFunction(class ch31::exercises::ex4::ComplicatedClass *): retrieved cmd 64: UserCommand
2025-08-19 14:02:39.7159675 UTC: D:\etmbms\vsprojects\profcppbook\ch31.ixx(132): void __cdecl ch31::exercises::ex4::trickyFunction(class ch31::exercises::ex4::ComplicatedClass *): retrieved cmd 65: UserCommand
2025-08-19 14:02:39.7164237 UTC: D:\etmbms\vsprojects\profcppbook\ch31.ixx(132): void __cdecl ch31::exercises::ex4::trickyFunction(class ch31::exercises::ex4::ComplicatedClass *): retrieved cmd 66: UserCommand
2025-08-19 14:02:39.7168211 UTC: D:\etmbms\vsprojects\profcppbook\ch31.ixx(132): void __cdecl ch31::exercises::ex4::trickyFunction(class ch31::exercises::ex4::ComplicatedClass *): retrieved cmd 67: UserCommand
2025-08-19 14:02:39.7172212 UTC: D:\etmbms\vsprojects\profcppbook\ch31.ixx(132): void __cdecl ch31::exercises::ex4::trickyFunction(class ch31::exercises::ex4::ComplicatedClass *): retrieved cmd 68: UserCommand
2025-08-19 14:02:39.7176222 UTC: D:\etmbms\vsprojects\profcppbook\ch31.ixx(132): void __cdecl ch31::exercises::ex4::trickyFunction(class ch31::exercises::ex4::ComplicatedClass *): retrieved cmd 69: UserCommand
2025-08-19 14:02:39.7180296 UTC: D:\etmbms\vsprojects\profcppbook\ch31.ixx(132): void __cdecl ch31::exercises::ex4::trickyFunction(class ch31::exercises::ex4::ComplicatedClass *): retrieved cmd 70: UserCommand
2025-08-19 14:02:39.7184618 UTC: D:\etmbms\vsprojects\profcppbook\ch31.ixx(132): void __cdecl ch31::exercises::ex4::trickyFunction(class ch31::exercises::ex4::ComplicatedClass *): retrieved cmd 71: UserCommand
2025-08-19 14:02:39.7188883 UTC: D:\etmbms\vsprojects\profcppbook\ch31.ixx(132): void __cdecl ch31::exercises::ex4::trickyFunction(class ch31::exercises::ex4::ComplicatedClass *): retrieved cmd 72: UserCommand
2025-08-19 14:02:39.7192924 UTC: D:\etmbms\vsprojects\profcppbook\ch31.ixx(132): void __cdecl ch31::exercises::ex4::trickyFunction(class ch31::exercises::ex4::ComplicatedClass *): retrieved cmd 73: UserCommand
2025-08-19 14:02:39.7197065 UTC: D:\etmbms\vsprojects\profcppbook\ch31.ixx(132): void __cdecl ch31::exercises::ex4::trickyFunction(class ch31::exercises::ex4::ComplicatedClass *): retrieved cmd 74: UserCommand
2025-08-19 14:02:39.7201554 UTC: D:\etmbms\vsprojects\profcppbook\ch31.ixx(132): void __cdecl ch31::exercises::ex4::trickyFunction(class ch31::exercises::ex4::ComplicatedClass *): retrieved cmd 75: UserCommand
2025-08-19 14:02:39.7205636 UTC: D:\etmbms\vsprojects\profcppbook\ch31.ixx(132): void __cdecl ch31::exercises::ex4::trickyFunction(class ch31::exercises::ex4::ComplicatedClass *): retrieved cmd 76: UserCommand
2025-08-19 14:02:39.7209782 UTC: D:\etmbms\vsprojects\profcppbook\ch31.ixx(132): void __cdecl ch31::exercises::ex4::trickyFunction(class ch31::exercises::ex4::ComplicatedClass *): retrieved cmd 77: UserCommand
2025-08-19 14:02:39.7213926 UTC: D:\etmbms\vsprojects\profcppbook\ch31.ixx(132): void __cdecl ch31::exercises::ex4::trickyFunction(class ch31::exercises::ex4::ComplicatedClass *): retrieved cmd 78: UserCommand
2025-08-19 14:02:39.7218013 UTC: D:\etmbms\vsprojects\profcppbook\ch31.ixx(132): void __cdecl ch31::exercises::ex4::trickyFunction(class ch31::exercises::ex4::ComplicatedClass *): retrieved cmd 79: UserCommand
2025-08-19 14:02:39.7222077 UTC: D:\etmbms\vsprojects\profcppbook\ch31.ixx(132): void __cdecl ch31::exercises::ex4::trickyFunction(class ch31::exercises::ex4::ComplicatedClass *): retrieved cmd 80: UserCommand
2025-08-19 14:02:39.7226024 UTC: D:\etmbms\vsprojects\profcppbook\ch31.ixx(132): void __cdecl ch31::exercises::ex4::trickyFunction(class ch31::exercises::ex4::ComplicatedClass *): retrieved cmd 81: UserCommand
2025-08-19 14:02:39.7229998 UTC: D:\etmbms\vsprojects\profcppbook\ch31.ixx(132): void __cdecl ch31::exercises::ex4::trickyFunction(class ch31::exercises::ex4::ComplicatedClass *): retrieved cmd 82: UserCommand
2025-08-19 14:02:39.7233964 UTC: D:\etmbms\vsprojects\profcppbook\ch31.ixx(132): void __cdecl ch31::exercises::ex4::trickyFunction(class ch31::exercises::ex4::ComplicatedClass *): retrieved cmd 83: UserCommand
2025-08-19 14:02:39.7238025 UTC: D:\etmbms\vsprojects\profcppbook\ch31.ixx(132): void __cdecl ch31::exercises::ex4::trickyFunction(class ch31::exercises::ex4::ComplicatedClass *): retrieved cmd 84: UserCommand
2025-08-19 14:02:39.7242304 UTC: D:\etmbms\vsprojects\profcppbook\ch31.ixx(132): void __cdecl ch31::exercises::ex4::trickyFunction(class ch31::exercises::ex4::ComplicatedClass *): retrieved cmd 85: UserCommand
2025-08-19 14:02:39.7246410 UTC: D:\etmbms\vsprojects\profcppbook\ch31.ixx(132): void __cdecl ch31::exercises::ex4::trickyFunction(class ch31::exercises::ex4::ComplicatedClass *): retrieved cmd 86: UserCommand
2025-08-19 14:02:39.7250581 UTC: D:\etmbms\vsprojects\profcppbook\ch31.ixx(132): void __cdecl ch31::exercises::ex4::trickyFunction(class ch31::exercises::ex4::ComplicatedClass *): retrieved cmd 87: UserCommand
2025-08-19 14:02:39.7254676 UTC: D:\etmbms\vsprojects\profcppbook\ch31.ixx(132): void __cdecl ch31::exercises::ex4::trickyFunction(class ch31::exercises::ex4::ComplicatedClass *): retrieved cmd 88: UserCommand
2025-08-19 14:02:39.7258733 UTC: D:\etmbms\vsprojects\profcppbook\ch31.ixx(132): void __cdecl ch31::exercises::ex4::trickyFunction(class ch31::exercises::ex4::ComplicatedClass *): retrieved cmd 89: UserCommand
2025-08-19 14:02:39.7263300 UTC: D:\etmbms\vsprojects\profcppbook\ch31.ixx(132): void __cdecl ch31::exercises::ex4::trickyFunction(class ch31::exercises::ex4::ComplicatedClass *): retrieved cmd 90: UserCommand
2025-08-19 14:02:39.7268046 UTC: D:\etmbms\vsprojects\profcppbook\ch31.ixx(132): void __cdecl ch31::exercises::ex4::trickyFunction(class ch31::exercises::ex4::ComplicatedClass *): retrieved cmd 91: UserCommand
2025-08-19 14:02:39.7272116 UTC: D:\etmbms\vsprojects\profcppbook\ch31.ixx(132): void __cdecl ch31::exercises::ex4::trickyFunction(class ch31::exercises::ex4::ComplicatedClass *): retrieved cmd 92: UserCommand
2025-08-19 14:02:39.7276099 UTC: D:\etmbms\vsprojects\profcppbook\ch31.ixx(132): void __cdecl ch31::exercises::ex4::trickyFunction(class ch31::exercises::ex4::ComplicatedClass *): retrieved cmd 93: UserCommand
2025-08-19 14:02:39.7280439 UTC: D:\etmbms\vsprojects\profcppbook\ch31.ixx(132): void __cdecl ch31::exercises::ex4::trickyFunction(class ch31::exercises::ex4::ComplicatedClass *): retrieved cmd 94: UserCommand
2025-08-19 14:02:39.7284732 UTC: D:\etmbms\vsprojects\profcppbook\ch31.ixx(132): void __cdecl ch31::exercises::ex4::trickyFunction(class ch31::exercises::ex4::ComplicatedClass *): retrieved cmd 95: UserCommand
2025-08-19 14:02:39.7289371 UTC: D:\etmbms\vsprojects\profcppbook\ch31.ixx(132): void __cdecl ch31::exercises::ex4::trickyFunction(class ch31::exercises::ex4::ComplicatedClass *): retrieved cmd 96: UserCommand
2025-08-19 14:02:39.7293960 UTC: D:\etmbms\vsprojects\profcppbook\ch31.ixx(132): void __cdecl ch31::exercises::ex4::trickyFunction(class ch31::exercises::ex4::ComplicatedClass *): retrieved cmd 97: UserCommand
2025-08-19 14:02:39.7298393 UTC: D:\etmbms\vsprojects\profcppbook\ch31.ixx(132): void __cdecl ch31::exercises::ex4::trickyFunction(class ch31::exercises::ex4::ComplicatedClass *): retrieved cmd 98: UserCommand
2025-08-19 14:02:39.7303026 UTC: D:\etmbms\vsprojects\profcppbook\ch31.ixx(132): void __cdecl ch31::exercises::ex4::trickyFunction(class ch31::exercises::ex4::ComplicatedClass *): retrieved cmd 99: UserCommand
2025-08-19 14:28:34.0885495 UTC: D:\etmbms\vsprojects\profcppbook\ch31.ixx(152): void __cdecl ch31::exercises::ex4::test(int,char **): Argument: D:\etmbms\vsprojects\profcppbook\x64\Debug\profcppbook.exe
2025-08-19 14:28:34.0910920 UTC: D:\etmbms\vsprojects\profcppbook\ch31.ixx(152): void __cdecl ch31::exercises::ex4::test(int,char **): Argument: -d
2025-08-19 14:28:34.0916292 UTC: D:\etmbms\vsprojects\profcppbook\ch31.ixx(130): void __cdecl ch31::exercises::ex4::trickyFunction(class ch31::exercises::ex4::ComplicatedClass *): given argument: ComplicatedClass
2025-08-19 14:28:34.0923063 UTC: D:\etmbms\vsprojects\profcppbook\ch31.ixx(134): void __cdecl ch31::exercises::ex4::trickyFunction(class ch31::exercises::ex4::ComplicatedClass *): retrieved cmd 0: UserCommand
2025-08-19 14:28:34.0932640 UTC: D:\etmbms\vsprojects\profcppbook\ch31.ixx(134): void __cdecl ch31::exercises::ex4::trickyFunction(class ch31::exercises::ex4::ComplicatedClass *): retrieved cmd 1: UserCommand
2025-08-19 14:28:34.0938298 UTC: D:\etmbms\vsprojects\profcppbook\ch31.ixx(134): void __cdecl ch31::exercises::ex4::trickyFunction(class ch31::exercises::ex4::ComplicatedClass *): retrieved cmd 2: UserCommand
2025-08-19 14:28:34.0943788 UTC: D:\etmbms\vsprojects\profcppbook\ch31.ixx(134): void __cdecl ch31::exercises::ex4::trickyFunction(class ch31::exercises::ex4::ComplicatedClass *): retrieved cmd 3: UserCommand
2025-08-19 14:28:34.0949127 UTC: D:\etmbms\vsprojects\profcppbook\ch31.ixx(134): void __cdecl ch31::exercises::ex4::trickyFunction(class ch31::exercises::ex4::ComplicatedClass *): retrieved cmd 4: UserCommand
2025-08-19 14:28:34.0954581 UTC: D:\etmbms\vsprojects\profcppbook\ch31.ixx(134): void __cdecl ch31::exercises::ex4::trickyFunction(class ch31::exercises::ex4::ComplicatedClass *): retrieved cmd 5: UserCommand
2025-08-19 14:28:34.0959885 UTC: D:\etmbms\vsprojects\profcppbook\ch31.ixx(134): void __cdecl ch31::exercises::ex4::trickyFunction(class ch31::exercises::ex4::ComplicatedClass *): retrieved cmd 6: UserCommand
2025-08-19 14:28:34.0964838 UTC: D:\etmbms\vsprojects\profcppbook\ch31.ixx(134): void __cdecl ch31::exercises::ex4::trickyFunction(class ch31::exercises::ex4::ComplicatedClass *): retrieved cmd 7: UserCommand
2025-08-19 14:28:34.0969730 UTC: D:\etmbms\vsprojects\profcppbook\ch31.ixx(134): void __cdecl ch31::exercises::ex4::trickyFunction(class ch31::exercises::ex4::ComplicatedClass *): retrieved cmd 8: UserCommand
2025-08-19 14:28:34.0974745 UTC: D:\etmbms\vsprojects\profcppbook\ch31.ixx(134): void __cdecl ch31::exercises::ex4::trickyFunction(class ch31::exercises::ex4::ComplicatedClass *): retrieved cmd 9: UserCommand
2025-08-19 14:28:34.0979327 UTC: D:\etmbms\vsprojects\profcppbook\ch31.ixx(134): void __cdecl ch31::exercises::ex4::trickyFunction(class ch31::exercises::ex4::ComplicatedClass *): retrieved cmd 10: UserCommand
2025-08-19 14:28:34.0983621 UTC: D:\etmbms\vsprojects\profcppbook\ch31.ixx(134): void __cdecl ch31::exercises::ex4::trickyFunction(class ch31::exercises::ex4::ComplicatedClass *): retrieved cmd 11: UserCommand
2025-08-19 14:28:34.0988225 UTC: D:\etmbms\vsprojects\profcppbook\ch31.ixx(134): void __cdecl ch31::exercises::ex4::trickyFunction(class ch31::exercises::ex4::ComplicatedClass *): retrieved cmd 12: UserCommand
2025-08-19 14:28:34.0992921 UTC: D:\etmbms\vsprojects\profcppbook\ch31.ixx(134): void __cdecl ch31::exercises::ex4::trickyFunction(class ch31::exercises::ex4::ComplicatedClass *): retrieved cmd 13: UserCommand
2025-08-19 14:28:34.0997632 UTC: D:\etmbms\vsprojects\profcppbook\ch31.ixx(134): void __cdecl ch31::exercises::ex4::trickyFunction(class ch31::exercises::ex4::ComplicatedClass *): retrieved cmd 14: UserCommand
2025-08-19 14:28:34.1002154 UTC: D:\etmbms\vsprojects\profcppbook\ch31.ixx(134): void __cdecl ch31::exercises::ex4::trickyFunction(class ch31::exercises::ex4::ComplicatedClass *): retrieved cmd 15: UserCommand
2025-08-19 14:28:34.1006659 UTC: D:\etmbms\vsprojects\profcppbook\ch31.ixx(134): void __cdecl ch31::exercises::ex4::trickyFunction(class ch31::exercises::ex4::ComplicatedClass *): retrieved cmd 16: UserCommand
2025-08-19 14:28:34.1010971 UTC: D:\etmbms\vsprojects\profcppbook\ch31.ixx(134): void __cdecl ch31::exercises::ex4::trickyFunction(class ch31::exercises::ex4::ComplicatedClass *): retrieved cmd 17: UserCommand
2025-08-19 14:28:34.1015179 UTC: D:\etmbms\vsprojects\profcppbook\ch31.ixx(134): void __cdecl ch31::exercises::ex4::trickyFunction(class ch31::exercises::ex4::ComplicatedClass *): retrieved cmd 18: UserCommand
2025-08-19 14:28:34.1019628 UTC: D:\etmbms\vsprojects\profcppbook\ch31.ixx(134): void __cdecl ch31::exercises::ex4::trickyFunction(class ch31::exercises::ex4::ComplicatedClass *): retrieved cmd 19: UserCommand
2025-08-19 14:28:34.1023759 UTC: D:\etmbms\vsprojects\profcppbook\ch31.ixx(134): void __cdecl ch31::exercises::ex4::trickyFunction(class ch31::exercises::ex4::ComplicatedClass *): retrieved cmd 20: UserCommand
2025-08-19 14:28:34.1027656 UTC: D:\etmbms\vsprojects\profcppbook\ch31.ixx(134): void __cdecl ch31::exercises::ex4::trickyFunction(class ch31::exercises::ex4::ComplicatedClass *): retrieved cmd 21: UserCommand
2025-08-19 14:28:34.1031619 UTC: D:\etmbms\vsprojects\profcppbook\ch31.ixx(134): void __cdecl ch31::exercises::ex4::trickyFunction(class ch31::exercises::ex4::ComplicatedClass *): retrieved cmd 22: UserCommand
2025-08-19 14:28:34.1035681 UTC: D:\etmbms\vsprojects\profcppbook\ch31.ixx(134): void __cdecl ch31::exercises::ex4::trickyFunction(class ch31::exercises::ex4::ComplicatedClass *): retrieved cmd 23: UserCommand
2025-08-19 14:28:34.1039997 UTC: D:\etmbms\vsprojects\profcppbook\ch31.ixx(134): void __cdecl ch31::exercises::ex4::trickyFunction(class ch31::exercises::ex4::ComplicatedClass *): retrieved cmd 24: UserCommand
2025-08-19 14:28:34.1044345 UTC: D:\etmbms\vsprojects\profcppbook\ch31.ixx(134): void __cdecl ch31::exercises::ex4::trickyFunction(class ch31::exercises::ex4::ComplicatedClass *): retrieved cmd 25: UserCommand
2025-08-19 14:28:34.1048471 UTC: D:\etmbms\vsprojects\profcppbook\ch31.ixx(134): void __cdecl ch31::exercises::ex4::trickyFunction(class ch31::exercises::ex4::ComplicatedClass *): retrieved cmd 26: UserCommand
2025-08-19 14:28:34.1052914 UTC: D:\etmbms\vsprojects\profcppbook\ch31.ixx(134): void __cdecl ch31::exercises::ex4::trickyFunction(class ch31::exercises::ex4::ComplicatedClass *): retrieved cmd 27: UserCommand
2025-08-19 14:28:34.1057211 UTC: D:\etmbms\vsprojects\profcppbook\ch31.ixx(134): void __cdecl ch31::exercises::ex4::trickyFunction(class ch31::exercises::ex4::ComplicatedClass *): retrieved cmd 28: UserCommand
2025-08-19 14:28:34.1061772 UTC: D:\etmbms\vsprojects\profcppbook\ch31.ixx(134): void __cdecl ch31::exercises::ex4::trickyFunction(class ch31::exercises::ex4::ComplicatedClass *): retrieved cmd 29: UserCommand
2025-08-19 14:28:34.1066013 UTC: D:\etmbms\vsprojects\profcppbook\ch31.ixx(134): void __cdecl ch31::exercises::ex4::trickyFunction(class ch31::exercises::ex4::ComplicatedClass *): retrieved cmd 30: UserCommand
2025-08-19 14:28:34.1070052 UTC: D:\etmbms\vsprojects\profcppbook\ch31.ixx(134): void __cdecl ch31::exercises::ex4::trickyFunction(class ch31::exercises::ex4::ComplicatedClass *): retrieved cmd 31: UserCommand
2025-08-19 14:28:34.1074448 UTC: D:\etmbms\vsprojects\profcppbook\ch31.ixx(134): void __cdecl ch31::exercises::ex4::trickyFunction(class ch31::exercises::ex4::ComplicatedClass *): retrieved cmd 32: UserCommand
2025-08-19 14:28:34.1078809 UTC: D:\etmbms\vsprojects\profcppbook\ch31.ixx(134): void __cdecl ch31::exercises::ex4::trickyFunction(class ch31::exercises::ex4::ComplicatedClass *): retrieved cmd 33: UserCommand
2025-08-19 14:28:34.1083519 UTC: D:\etmbms\vsprojects\profcppbook\ch31.ixx(134): void __cdecl ch31::exercises::ex4::trickyFunction(class ch31::exercises::ex4::ComplicatedClass *): retrieved cmd 34: UserCommand
2025-08-19 14:28:34.1087831 UTC: D:\etmbms\vsprojects\profcppbook\ch31.ixx(134): void __cdecl ch31::exercises::ex4::trickyFunction(class ch31::exercises::ex4::ComplicatedClass *): retrieved cmd 35: UserCommand
2025-08-19 14:28:34.1092674 UTC: D:\etmbms\vsprojects\profcppbook\ch31.ixx(134): void __cdecl ch31::exercises::ex4::trickyFunction(class ch31::exercises::ex4::ComplicatedClass *): retrieved cmd 36: UserCommand
2025-08-19 14:28:34.1097365 UTC: D:\etmbms\vsprojects\profcppbook\ch31.ixx(134): void __cdecl ch31::exercises::ex4::trickyFunction(class ch31::exercises::ex4::ComplicatedClass *): retrieved cmd 37: UserCommand
2025-08-19 14:28:34.1101633 UTC: D:\etmbms\vsprojects\profcppbook\ch31.ixx(134): void __cdecl ch31::exercises::ex4::trickyFunction(class ch31::exercises::ex4::ComplicatedClass *): retrieved cmd 38: UserCommand
2025-08-19 14:28:34.1105810 UTC: D:\etmbms\vsprojects\profcppbook\ch31.ixx(134): void __cdecl ch31::exercises::ex4::trickyFunction(class ch31::exercises::ex4::ComplicatedClass *): retrieved cmd 39: UserCommand
2025-08-19 14:28:34.1110233 UTC: D:\etmbms\vsprojects\profcppbook\ch31.ixx(134): void __cdecl ch31::exercises::ex4::trickyFunction(class ch31::exercises::ex4::ComplicatedClass *): retrieved cmd 40: UserCommand
2025-08-19 14:28:34.1115085 UTC: D:\etmbms\vsprojects\profcppbook\ch31.ixx(134): void __cdecl ch31::exercises::ex4::trickyFunction(class ch31::exercises::ex4::ComplicatedClass *): retrieved cmd 41: UserCommand
2025-08-19 14:28:34.1119832 UTC: D:\etmbms\vsprojects\profcppbook\ch31.ixx(134): void __cdecl ch31::exercises::ex4::trickyFunction(class ch31::exercises::ex4::ComplicatedClass *): retrieved cmd 42: UserCommand
2025-08-19 14:28:34.1124441 UTC: D:\etmbms\vsprojects\profcppbook\ch31.ixx(134): void __cdecl ch31::exercises::ex4::trickyFunction(class ch31::exercises::ex4::ComplicatedClass *): retrieved cmd 43: UserCommand
2025-08-19 14:28:34.1128765 UTC: D:\etmbms\vsprojects\profcppbook\ch31.ixx(134): void __cdecl ch31::exercises::ex4::trickyFunction(class ch31::exercises::ex4::ComplicatedClass *): retrieved cmd 44: UserCommand
2025-08-19 14:28:34.1133355 UTC: D:\etmbms\vsprojects\profcppbook\ch31.ixx(134): void __cdecl ch31::exercises::ex4::trickyFunction(class ch31::exercises::ex4::ComplicatedClass *): retrieved cmd 45: UserCommand
2025-08-19 14:28:34.1138765 UTC: D:\etmbms\vsprojects\profcppbook\ch31.ixx(134): void __cdecl ch31::exercises::ex4::trickyFunction(class ch31::exercises::ex4::ComplicatedClass *): retrieved cmd 46: UserCommand
2025-08-19 14:28:34.1144196 UTC: D:\etmbms\vsprojects\profcppbook\ch31.ixx(134): void __cdecl ch31::exercises::ex4::trickyFunction(class ch31::exercises::ex4::ComplicatedClass *): retrieved cmd 47: UserCommand
2025-08-19 14:28:34.1149176 UTC: D:\etmbms\vsprojects\profcppbook\ch31.ixx(134): void __cdecl ch31::exercises::ex4::trickyFunction(class ch31::exercises::ex4::ComplicatedClass *): retrieved cmd 48: UserCommand
2025-08-19 14:28:34.1153885 UTC: D:\etmbms\vsprojects\profcppbook\ch31.ixx(134): void __cdecl ch31::exercises::ex4::trickyFunction(class ch31::exercises::ex4::ComplicatedClass *): retrieved cmd 49: UserCommand
2025-08-19 14:28:34.1158578 UTC: D:\etmbms\vsprojects\profcppbook\ch31.ixx(134): void __cdecl ch31::exercises::ex4::trickyFunction(class ch31::exercises::ex4::ComplicatedClass *): retrieved cmd 50: UserCommand
2025-08-19 14:28:34.1163036 UTC: D:\etmbms\vsprojects\profcppbook\ch31.ixx(134): void __cdecl ch31::exercises::ex4::trickyFunction(class ch31::exercises::ex4::ComplicatedClass *): retrieved cmd 51: UserCommand
2025-08-19 14:28:34.1167519 UTC: D:\etmbms\vsprojects\profcppbook\ch31.ixx(134): void __cdecl ch31::exercises::ex4::trickyFunction(class ch31::exercises::ex4::ComplicatedClass *): retrieved cmd 52: UserCommand
2025-08-19 14:28:34.1172558 UTC: D:\etmbms\vsprojects\profcppbook\ch31.ixx(134): void __cdecl ch31::exercises::ex4::trickyFunction(class ch31::exercises::ex4::ComplicatedClass *): retrieved cmd 53: UserCommand
2025-08-19 14:28:34.1177106 UTC: D:\etmbms\vsprojects\profcppbook\ch31.ixx(134): void __cdecl ch31::exercises::ex4::trickyFunction(class ch31::exercises::ex4::ComplicatedClass *): retrieved cmd 54: UserCommand
2025-08-19 14:28:34.1181859 UTC: D:\etmbms\vsprojects\profcppbook\ch31.ixx(134): void __cdecl ch31::exercises::ex4::trickyFunction(class ch31::exercises::ex4::ComplicatedClass *): retrieved cmd 55: UserCommand
2025-08-19 14:28:34.1186085 UTC: D:\etmbms\vsprojects\profcppbook\ch31.ixx(134): void __cdecl ch31::exercises::ex4::trickyFunction(class ch31::exercises::ex4::ComplicatedClass *): retrieved cmd 56: UserCommand
2025-08-19 14:28:34.1190636 UTC: D:\etmbms\vsprojects\profcppbook\ch31.ixx(134): void __cdecl ch31::exercises::ex4::trickyFunction(class ch31::exercises::ex4::ComplicatedClass *): retrieved cmd 57: UserCommand
2025-08-19 14:28:34.1194907 UTC: D:\etmbms\vsprojects\profcppbook\ch31.ixx(134): void __cdecl ch31::exercises::ex4::trickyFunction(class ch31::exercises::ex4::ComplicatedClass *): retrieved cmd 58: UserCommand
2025-08-19 14:28:34.1199653 UTC: D:\etmbms\vsprojects\profcppbook\ch31.ixx(134): void __cdecl ch31::exercises::ex4::trickyFunction(class ch31::exercises::ex4::ComplicatedClass *): retrieved cmd 59: UserCommand
2025-08-19 14:28:34.1203775 UTC: D:\etmbms\vsprojects\profcppbook\ch31.ixx(134): void __cdecl ch31::exercises::ex4::trickyFunction(class ch31::exercises::ex4::ComplicatedClass *): retrieved cmd 60: UserCommand
2025-08-19 14:28:34.1209118 UTC: D:\etmbms\vsprojects\profcppbook\ch31.ixx(134): void __cdecl ch31::exercises::ex4::trickyFunction(class ch31::exercises::ex4::ComplicatedClass *): retrieved cmd 61: UserCommand
2025-08-19 14:28:34.1214003 UTC: D:\etmbms\vsprojects\profcppbook\ch31.ixx(134): void __cdecl ch31::exercises::ex4::trickyFunction(class ch31::exercises::ex4::ComplicatedClass *): retrieved cmd 62: UserCommand
2025-08-19 14:28:34.1219135 UTC: D:\etmbms\vsprojects\profcppbook\ch31.ixx(134): void __cdecl ch31::exercises::ex4::trickyFunction(class ch31::exercises::ex4::ComplicatedClass *): retrieved cmd 63: UserCommand
2025-08-19 14:28:34.1223960 UTC: D:\etmbms\vsprojects\profcppbook\ch31.ixx(134): void __cdecl ch31::exercises::ex4::trickyFunction(class ch31::exercises::ex4::ComplicatedClass *): retrieved cmd 64: UserCommand
2025-08-19 14:28:34.1228313 UTC: D:\etmbms\vsprojects\profcppbook\ch31.ixx(134): void __cdecl ch31::exercises::ex4::trickyFunction(class ch31::exercises::ex4::ComplicatedClass *): retrieved cmd 65: UserCommand
2025-08-19 14:28:34.1232796 UTC: D:\etmbms\vsprojects\profcppbook\ch31.ixx(134): void __cdecl ch31::exercises::ex4::trickyFunction(class ch31::exercises::ex4::ComplicatedClass *): retrieved cmd 66: UserCommand
2025-08-19 14:28:34.1237173 UTC: D:\etmbms\vsprojects\profcppbook\ch31.ixx(134): void __cdecl ch31::exercises::ex4::trickyFunction(class ch31::exercises::ex4::ComplicatedClass *): retrieved cmd 67: UserCommand
2025-08-19 14:28:34.1241495 UTC: D:\etmbms\vsprojects\profcppbook\ch31.ixx(134): void __cdecl ch31::exercises::ex4::trickyFunction(class ch31::exercises::ex4::ComplicatedClass *): retrieved cmd 68: UserCommand
2025-08-19 14:28:34.1245681 UTC: D:\etmbms\vsprojects\profcppbook\ch31.ixx(134): void __cdecl ch31::exercises::ex4::trickyFunction(class ch31::exercises::ex4::ComplicatedClass *): retrieved cmd 69: UserCommand
2025-08-19 14:28:34.1249993 UTC: D:\etmbms\vsprojects\profcppbook\ch31.ixx(134): void __cdecl ch31::exercises::ex4::trickyFunction(class ch31::exercises::ex4::ComplicatedClass *): retrieved cmd 70: UserCommand
2025-08-19 14:28:34.1254420 UTC: D:\etmbms\vsprojects\profcppbook\ch31.ixx(134): void __cdecl ch31::exercises::ex4::trickyFunction(class ch31::exercises::ex4::ComplicatedClass *): retrieved cmd 71: UserCommand
2025-08-19 14:28:34.1258873 UTC: D:\etmbms\vsprojects\profcppbook\ch31.ixx(134): void __cdecl ch31::exercises::ex4::trickyFunction(class ch31::exercises::ex4::ComplicatedClass *): retrieved cmd 72: UserCommand
2025-08-19 14:28:34.1263689 UTC: D:\etmbms\vsprojects\profcppbook\ch31.ixx(134): void __cdecl ch31::exercises::ex4::trickyFunction(class ch31::exercises::ex4::ComplicatedClass *): retrieved cmd 73: UserCommand
2025-08-19 14:28:34.1268428 UTC: D:\etmbms\vsprojects\profcppbook\ch31.ixx(134): void __cdecl ch31::exercises::ex4::trickyFunction(class ch31::exercises::ex4::ComplicatedClass *): retrieved cmd 74: UserCommand
2025-08-19 14:28:34.1272999 UTC: D:\etmbms\vsprojects\profcppbook\ch31.ixx(134): void __cdecl ch31::exercises::ex4::trickyFunction(class ch31::exercises::ex4::ComplicatedClass *): retrieved cmd 75: UserCommand
2025-08-19 14:28:34.1277280 UTC: D:\etmbms\vsprojects\profcppbook\ch31.ixx(134): void __cdecl ch31::exercises::ex4::trickyFunction(class ch31::exercises::ex4::ComplicatedClass *): retrieved cmd 76: UserCommand
2025-08-19 14:28:34.1281642 UTC: D:\etmbms\vsprojects\profcppbook\ch31.ixx(134): void __cdecl ch31::exercises::ex4::trickyFunction(class ch31::exercises::ex4::ComplicatedClass *): retrieved cmd 77: UserCommand
2025-08-19 14:28:34.1286150 UTC: D:\etmbms\vsprojects\profcppbook\ch31.ixx(134): void __cdecl ch31::exercises::ex4::trickyFunction(class ch31::exercises::ex4::ComplicatedClass *): retrieved cmd 78: UserCommand
2025-08-19 14:28:34.1290294 UTC: D:\etmbms\vsprojects\profcppbook\ch31.ixx(134): void __cdecl ch31::exercises::ex4::trickyFunction(class ch31::exercises::ex4::ComplicatedClass *): retrieved cmd 79: UserCommand
2025-08-19 14:28:34.1294206 UTC: D:\etmbms\vsprojects\profcppbook\ch31.ixx(134): void __cdecl ch31::exercises::ex4::trickyFunction(class ch31::exercises::ex4::ComplicatedClass *): retrieved cmd 80: UserCommand
2025-08-19 14:28:34.1298142 UTC: D:\etmbms\vsprojects\profcppbook\ch31.ixx(134): void __cdecl ch31::exercises::ex4::trickyFunction(class ch31::exercises::ex4::ComplicatedClass *): retrieved cmd 81: UserCommand
2025-08-19 14:28:34.1302386 UTC: D:\etmbms\vsprojects\profcppbook\ch31.ixx(134): void __cdecl ch31::exercises::ex4::trickyFunction(class ch31::exercises::ex4::ComplicatedClass *): retrieved cmd 82: UserCommand
2025-08-19 14:28:34.1306791 UTC: D:\etmbms\vsprojects\profcppbook\ch31.ixx(134): void __cdecl ch31::exercises::ex4::trickyFunction(class ch31::exercises::ex4::ComplicatedClass *): retrieved cmd 83: UserCommand
2025-08-19 14:28:34.1311053 UTC: D:\etmbms\vsprojects\profcppbook\ch31.ixx(134): void __cdecl ch31::exercises::ex4::trickyFunction(class ch31::exercises::ex4::ComplicatedClass *): retrieved cmd 84: UserCommand
2025-08-19 14:28:34.1315134 UTC: D:\etmbms\vsprojects\profcppbook\ch31.ixx(134): void __cdecl ch31::exercises::ex4::trickyFunction(class ch31::exercises::ex4::ComplicatedClass *): retrieved cmd 85: UserCommand
2025-08-19 14:28:34.1319133 UTC: D:\etmbms\vsprojects\profcppbook\ch31.ixx(134): void __cdecl ch31::exercises::ex4::trickyFunction(class ch31::exercises::ex4::ComplicatedClass *): retrieved cmd 86: UserCommand
2025-08-19 14:28:34.1323177 UTC: D:\etmbms\vsprojects\profcppbook\ch31.ixx(134): void __cdecl ch31::exercises::ex4::trickyFunction(class ch31::exercises::ex4::ComplicatedClass *): retrieved cmd 87: UserCommand
2025-08-19 14:28:34.1327214 UTC: D:\etmbms\vsprojects\profcppbook\ch31.ixx(134): void __cdecl ch31::exercises::ex4::trickyFunction(class ch31::exercises::ex4::ComplicatedClass *): retrieved cmd 88: UserCommand
2025-08-19 14:28:34.1331194 UTC: D:\etmbms\vsprojects\profcppbook\ch31.ixx(134): void __cdecl ch31::exercises::ex4::trickyFunction(class ch31::exercises::ex4::ComplicatedClass *): retrieved cmd 89: UserCommand
2025-08-19 14:28:34.1335259 UTC: D:\etmbms\vsprojects\profcppbook\ch31.ixx(134): void __cdecl ch31::exercises::ex4::trickyFunction(class ch31::exercises::ex4::ComplicatedClass *): retrieved cmd 90: UserCommand
2025-08-19 14:28:34.1339487 UTC: D:\etmbms\vsprojects\profcppbook\ch31.ixx(134): void __cdecl ch31::exercises::ex4::trickyFunction(class ch31::exercises::ex4::ComplicatedClass *): retrieved cmd 91: UserCommand
2025-08-19 14:28:34.1343977 UTC: D:\etmbms\vsprojects\profcppbook\ch31.ixx(134): void __cdecl ch31::exercises::ex4::trickyFunction(class ch31::exercises::ex4::ComplicatedClass *): retrieved cmd 92: UserCommand
2025-08-19 14:28:34.1348303 UTC: D:\etmbms\vsprojects\profcppbook\ch31.ixx(134): void __cdecl ch31::exercises::ex4::trickyFunction(class ch31::exercises::ex4::ComplicatedClass *): retrieved cmd 93: UserCommand
2025-08-19 14:28:34.1352561 UTC: D:\etmbms\vsprojects\profcppbook\ch31.ixx(134): void __cdecl ch31::exercises::ex4::trickyFunction(class ch31::exercises::ex4::ComplicatedClass *): retrieved cmd 94: UserCommand
2025-08-19 14:28:34.1356842 UTC: D:\etmbms\vsprojects\profcppbook\ch31.ixx(134): void __cdecl ch31::exercises::ex4::trickyFunction(class ch31::exercises::ex4::ComplicatedClass *): retrieved cmd 95: UserCommand
2025-08-19 14:28:34.1361375 UTC: D:\etmbms\vsprojects\profcppbook\ch31.ixx(134): void __cdecl ch31::exercises::ex4::trickyFunction(class ch31::exercises::ex4::ComplicatedClass *): retrieved cmd 96: UserCommand
2025-08-19 14:28:34.1365417 UTC: D:\etmbms\vsprojects\profcppbook\ch31.ixx(134): void __cdecl ch31::exercises::ex4::trickyFunction(class ch31::exercises::ex4::ComplicatedClass *): retrieved cmd 97: UserCommand
2025-08-19 14:28:34.1369415 UTC: D:\etmbms\vsprojects\profcppbook\ch31.ixx(134): void __cdecl ch31::exercises::ex4::trickyFunction(class ch31::exercises::ex4::ComplicatedClass *): retrieved cmd 98: UserCommand
2025-08-19 14:28:34.1373376 UTC: D:\etmbms\vsprojects\profcppbook\ch31.ixx(134): void __cdecl ch31::exercises::ex4::trickyFunction(class ch31::exercises::ex4::ComplicatedClass *): retrieved cmd 99: UserCommand
2025-08-19 14:28:40.3777551 UTC: D:\etmbms\vsprojects\profcppbook\ch31.ixx(152): void __cdecl ch31::exercises::ex4::test(int,char **): Argument: D:\etmbms\vsprojects\profcppbook\x64\Debug\profcppbook.exe
2025-08-19 14:28:40.3799835 UTC: D:\etmbms\vsprojects\profcppbook\ch31.ixx(152): void __cdecl ch31::exercises::ex4::test(int,char **): Argument: -d
2025-08-19 14:28:40.3804196 UTC: D:\etmbms\vsprojects\profcppbook\ch31.ixx(130): void __cdecl ch31::exercises::ex4::trickyFunction(class ch31::exercises::ex4::ComplicatedClass *): given argument: ComplicatedClass
2025-08-19 14:28:40.3809401 UTC: D:\etmbms\vsprojects\profcppbook\ch31.ixx(134): void __cdecl ch31::exercises::ex4::trickyFunction(class ch31::exercises::ex4::ComplicatedClass *): retrieved cmd 0: UserCommand
2025-08-19 14:28:40.3814538 UTC: D:\etmbms\vsprojects\profcppbook\ch31.ixx(134): void __cdecl ch31::exercises::ex4::trickyFunction(class ch31::exercises::ex4::ComplicatedClass *): retrieved cmd 1: UserCommand
2025-08-19 14:28:40.3819191 UTC: D:\etmbms\vsprojects\profcppbook\ch31.ixx(134): void __cdecl ch31::exercises::ex4::trickyFunction(class ch31::exercises::ex4::ComplicatedClass *): retrieved cmd 2: UserCommand
2025-08-19 14:28:40.3823809 UTC: D:\etmbms\vsprojects\profcppbook\ch31.ixx(134): void __cdecl ch31::exercises::ex4::trickyFunction(class ch31::exercises::ex4::ComplicatedClass *): retrieved cmd 3: UserCommand
2025-08-19 14:28:40.3828847 UTC: D:\etmbms\vsprojects\profcppbook\ch31.ixx(134): void __cdecl ch31::exercises::ex4::trickyFunction(class ch31::exercises::ex4::ComplicatedClass *): retrieved cmd 4: UserCommand
2025-08-19 14:28:40.3834584 UTC: D:\etmbms\vsprojects\profcppbook\ch31.ixx(134): void __cdecl ch31::exercises::ex4::trickyFunction(class ch31::exercises::ex4::ComplicatedClass *): retrieved cmd 5: UserCommand
2025-08-19 14:28:40.3839887 UTC: D:\etmbms\vsprojects\profcppbook\ch31.ixx(134): void __cdecl ch31::exercises::ex4::trickyFunction(class ch31::exercises::ex4::ComplicatedClass *): retrieved cmd 6: UserCommand
2025-08-19 14:28:40.3845233 UTC: D:\etmbms\vsprojects\profcppbook\ch31.ixx(134): void __cdecl ch31::exercises::ex4::trickyFunction(class ch31::exercises::ex4::ComplicatedClass *): retrieved cmd 7: UserCommand
2025-08-19 14:28:40.3850601 UTC: D:\etmbms\vsprojects\profcppbook\ch31.ixx(134): void __cdecl ch31::exercises::ex4::trickyFunction(class ch31::exercises::ex4::ComplicatedClass *): retrieved cmd 8: UserCommand
2025-08-19 14:28:40.3855704 UTC: D:\etmbms\vsprojects\profcppbook\ch31.ixx(134): void __cdecl ch31::exercises::ex4::trickyFunction(class ch31::exercises::ex4::ComplicatedClass *): retrieved cmd 9: UserCommand
2025-08-19 14:28:40.3860262 UTC: D:\etmbms\vsprojects\profcppbook\ch31.ixx(134): void __cdecl ch31::exercises::ex4::trickyFunction(class ch31::exercises::ex4::ComplicatedClass *): retrieved cmd 10: UserCommand
2025-08-19 14:28:40.3864817 UTC: D:\etmbms\vsprojects\profcppbook\ch31.ixx(134): void __cdecl ch31::exercises::ex4::trickyFunction(class ch31::exercises::ex4::ComplicatedClass *): retrieved cmd 11: UserCommand
2025-08-19 14:28:40.3869807 UTC: D:\etmbms\vsprojects\profcppbook\ch31.ixx(134): void __cdecl ch31::exercises::ex4::trickyFunction(class ch31::exercises::ex4::ComplicatedClass *): retrieved cmd 12: UserCommand
2025-08-19 14:28:40.3874410 UTC: D:\etmbms\vsprojects\profcppbook\ch31.ixx(134): void __cdecl ch31::exercises::ex4::trickyFunction(class ch31::exercises::ex4::ComplicatedClass *): retrieved cmd 13: UserCommand
2025-08-19 14:28:40.3878851 UTC: D:\etmbms\vsprojects\profcppbook\ch31.ixx(134): void __cdecl ch31::exercises::ex4::trickyFunction(class ch31::exercises::ex4::ComplicatedClass *): retrieved cmd 14: UserCommand
2025-08-19 14:28:40.3883420 UTC: D:\etmbms\vsprojects\profcppbook\ch31.ixx(134): void __cdecl ch31::exercises::ex4::trickyFunction(class ch31::exercises::ex4::ComplicatedClass *): retrieved cmd 15: UserCommand
2025-08-19 14:28:40.3887934 UTC: D:\etmbms\vsprojects\profcppbook\ch31.ixx(134): void __cdecl ch31::exercises::ex4::trickyFunction(class ch31::exercises::ex4::ComplicatedClass *): retrieved cmd 16: UserCommand
2025-08-19 14:28:40.3892530 UTC: D:\etmbms\vsprojects\profcppbook\ch31.ixx(134): void __cdecl ch31::exercises::ex4::trickyFunction(class ch31::exercises::ex4::ComplicatedClass *): retrieved cmd 17: UserCommand
2025-08-19 14:28:40.3896768 UTC: D:\etmbms\vsprojects\profcppbook\ch31.ixx(134): void __cdecl ch31::exercises::ex4::trickyFunction(class ch31::exercises::ex4::ComplicatedClass *): retrieved cmd 18: UserCommand
2025-08-19 14:28:40.3900986 UTC: D:\etmbms\vsprojects\profcppbook\ch31.ixx(134): void __cdecl ch31::exercises::ex4::trickyFunction(class ch31::exercises::ex4::ComplicatedClass *): retrieved cmd 19: UserCommand
2025-08-19 14:28:40.3905635 UTC: D:\etmbms\vsprojects\profcppbook\ch31.ixx(134): void __cdecl ch31::exercises::ex4::trickyFunction(class ch31::exercises::ex4::ComplicatedClass *): retrieved cmd 20: UserCommand
2025-08-19 14:28:40.3910088 UTC: D:\etmbms\vsprojects\profcppbook\ch31.ixx(134): void __cdecl ch31::exercises::ex4::trickyFunction(class ch31::exercises::ex4::ComplicatedClass *): retrieved cmd 21: UserCommand
2025-08-19 14:28:40.3915471 UTC: D:\etmbms\vsprojects\profcppbook\ch31.ixx(134): void __cdecl ch31::exercises::ex4::trickyFunction(class ch31::exercises::ex4::ComplicatedClass *): retrieved cmd 22: UserCommand
2025-08-19 14:28:40.3921171 UTC: D:\etmbms\vsprojects\profcppbook\ch31.ixx(134): void __cdecl ch31::exercises::ex4::trickyFunction(class ch31::exercises::ex4::ComplicatedClass *): retrieved cmd 23: UserCommand
2025-08-19 14:28:40.3926285 UTC: D:\etmbms\vsprojects\profcppbook\ch31.ixx(134): void __cdecl ch31::exercises::ex4::trickyFunction(class ch31::exercises::ex4::ComplicatedClass *): retrieved cmd 24: UserCommand
2025-08-19 14:28:40.3931082 UTC: D:\etmbms\vsprojects\profcppbook\ch31.ixx(134): void __cdecl ch31::exercises::ex4::trickyFunction(class ch31::exercises::ex4::ComplicatedClass *): retrieved cmd 25: UserCommand
2025-08-19 14:28:40.3936297 UTC: D:\etmbms\vsprojects\profcppbook\ch31.ixx(134): void __cdecl ch31::exercises::ex4::trickyFunction(class ch31::exercises::ex4::ComplicatedClass *): retrieved cmd 26: UserCommand
2025-08-19 14:28:40.3940799 UTC: D:\etmbms\vsprojects\profcppbook\ch31.ixx(134): void __cdecl ch31::exercises::ex4::trickyFunction(class ch31::exercises::ex4::ComplicatedClass *): retrieved cmd 27: UserCommand
2025-08-19 14:28:40.3945457 UTC: D:\etmbms\vsprojects\profcppbook\ch31.ixx(134): void __cdecl ch31::exercises::ex4::trickyFunction(class ch31::exercises::ex4::ComplicatedClass *): retrieved cmd 28: UserCommand
2025-08-19 14:28:40.3949616 UTC: D:\etmbms\vsprojects\profcppbook\ch31.ixx(134): void __cdecl ch31::exercises::ex4::trickyFunction(class ch31::exercises::ex4::ComplicatedClass *): retrieved cmd 29: UserCommand
2025-08-19 14:28:40.3953782 UTC: D:\etmbms\vsprojects\profcppbook\ch31.ixx(134): void __cdecl ch31::exercises::ex4::trickyFunction(class ch31::exercises::ex4::ComplicatedClass *): retrieved cmd 30: UserCommand
2025-08-19 14:28:40.3958609 UTC: D:\etmbms\vsprojects\profcppbook\ch31.ixx(134): void __cdecl ch31::exercises::ex4::trickyFunction(class ch31::exercises::ex4::ComplicatedClass *): retrieved cmd 31: UserCommand
2025-08-19 14:28:40.3965422 UTC: D:\etmbms\vsprojects\profcppbook\ch31.ixx(134): void __cdecl ch31::exercises::ex4::trickyFunction(class ch31::exercises::ex4::ComplicatedClass *): retrieved cmd 32: UserCommand
2025-08-19 14:28:40.3969821 UTC: D:\etmbms\vsprojects\profcppbook\ch31.ixx(134): void __cdecl ch31::exercises::ex4::trickyFunction(class ch31::exercises::ex4::ComplicatedClass *): retrieved cmd 33: UserCommand
2025-08-19 14:28:40.3974065 UTC: D:\etmbms\vsprojects\profcppbook\ch31.ixx(134): void __cdecl ch31::exercises::ex4::trickyFunction(class ch31::exercises::ex4::ComplicatedClass *): retrieved cmd 34: UserCommand
2025-08-19 14:28:40.3978665 UTC: D:\etmbms\vsprojects\profcppbook\ch31.ixx(134): void __cdecl ch31::exercises::ex4::trickyFunction(class ch31::exercises::ex4::ComplicatedClass *): retrieved cmd 35: UserCommand
2025-08-19 14:28:40.3983274 UTC: D:\etmbms\vsprojects\profcppbook\ch31.ixx(134): void __cdecl ch31::exercises::ex4::trickyFunction(class ch31::exercises::ex4::ComplicatedClass *): retrieved cmd 36: UserCommand
2025-08-19 14:28:40.3987657 UTC: D:\etmbms\vsprojects\profcppbook\ch31.ixx(134): void __cdecl ch31::exercises::ex4::trickyFunction(class ch31::exercises::ex4::ComplicatedClass *): retrieved cmd 37: UserCommand
2025-08-19 14:28:40.3991922 UTC: D:\etmbms\vsprojects\profcppbook\ch31.ixx(134): void __cdecl ch31::exercises::ex4::trickyFunction(class ch31::exercises::ex4::ComplicatedClass *): retrieved cmd 38: UserCommand
2025-08-19 14:28:40.3996180 UTC: D:\etmbms\vsprojects\profcppbook\ch31.ixx(134): void __cdecl ch31::exercises::ex4::trickyFunction(class ch31::exercises::ex4::ComplicatedClass *): retrieved cmd 39: UserCommand
2025-08-19 14:28:40.4000528 UTC: D:\etmbms\vsprojects\profcppbook\ch31.ixx(134): void __cdecl ch31::exercises::ex4::trickyFunction(class ch31::exercises::ex4::ComplicatedClass *): retrieved cmd 40: UserCommand
2025-08-19 14:28:40.4004819 UTC: D:\etmbms\vsprojects\profcppbook\ch31.ixx(134): void __cdecl ch31::exercises::ex4::trickyFunction(class ch31::exercises::ex4::ComplicatedClass *): retrieved cmd 41: UserCommand
2025-08-19 14:28:40.4009107 UTC: D:\etmbms\vsprojects\profcppbook\ch31.ixx(134): void __cdecl ch31::exercises::ex4::trickyFunction(class ch31::exercises::ex4::ComplicatedClass *): retrieved cmd 42: UserCommand
2025-08-19 14:28:40.4013386 UTC: D:\etmbms\vsprojects\profcppbook\ch31.ixx(134): void __cdecl ch31::exercises::ex4::trickyFunction(class ch31::exercises::ex4::ComplicatedClass *): retrieved cmd 43: UserCommand
2025-08-19 14:28:40.4017603 UTC: D:\etmbms\vsprojects\profcppbook\ch31.ixx(134): void __cdecl ch31::exercises::ex4::trickyFunction(class ch31::exercises::ex4::ComplicatedClass *): retrieved cmd 44: UserCommand
2025-08-19 14:28:40.4021729 UTC: D:\etmbms\vsprojects\profcppbook\ch31.ixx(134): void __cdecl ch31::exercises::ex4::trickyFunction(class ch31::exercises::ex4::ComplicatedClass *): retrieved cmd 45: UserCommand
2025-08-19 14:28:40.4026174 UTC: D:\etmbms\vsprojects\profcppbook\ch31.ixx(134): void __cdecl ch31::exercises::ex4::trickyFunction(class ch31::exercises::ex4::ComplicatedClass *): retrieved cmd 46: UserCommand
2025-08-19 14:28:40.4030403 UTC: D:\etmbms\vsprojects\profcppbook\ch31.ixx(134): void __cdecl ch31::exercises::ex4::trickyFunction(class ch31::exercises::ex4::ComplicatedClass *): retrieved cmd 47: UserCommand
2025-08-19 14:28:40.4034990 UTC: D:\etmbms\vsprojects\profcppbook\ch31.ixx(134): void __cdecl ch31::exercises::ex4::trickyFunction(class ch31::exercises::ex4::ComplicatedClass *): retrieved cmd 48: UserCommand
2025-08-19 14:28:40.4039144 UTC: D:\etmbms\vsprojects\profcppbook\ch31.ixx(134): void __cdecl ch31::exercises::ex4::trickyFunction(class ch31::exercises::ex4::ComplicatedClass *): retrieved cmd 49: UserCommand
2025-08-19 14:28:40.4043302 UTC: D:\etmbms\vsprojects\profcppbook\ch31.ixx(134): void __cdecl ch31::exercises::ex4::trickyFunction(class ch31::exercises::ex4::ComplicatedClass *): retrieved cmd 50: UserCommand
2025-08-19 14:28:40.4047417 UTC: D:\etmbms\vsprojects\profcppbook\ch31.ixx(134): void __cdecl ch31::exercises::ex4::trickyFunction(class ch31::exercises::ex4::ComplicatedClass *): retrieved cmd 51: UserCommand
2025-08-19 14:28:40.4051474 UTC: D:\etmbms\vsprojects\profcppbook\ch31.ixx(134): void __cdecl ch31::exercises::ex4::trickyFunction(class ch31::exercises::ex4::ComplicatedClass *): retrieved cmd 52: UserCommand
2025-08-19 14:28:40.4055574 UTC: D:\etmbms\vsprojects\profcppbook\ch31.ixx(134): void __cdecl ch31::exercises::ex4::trickyFunction(class ch31::exercises::ex4::ComplicatedClass *): retrieved cmd 53: UserCommand
2025-08-19 14:28:40.4060073 UTC: D:\etmbms\vsprojects\profcppbook\ch31.ixx(134): void __cdecl ch31::exercises::ex4::trickyFunction(class ch31::exercises::ex4::ComplicatedClass *): retrieved cmd 54: UserCommand
2025-08-19 14:28:40.4064422 UTC: D:\etmbms\vsprojects\profcppbook\ch31.ixx(134): void __cdecl ch31::exercises::ex4::trickyFunction(class ch31::exercises::ex4::ComplicatedClass *): retrieved cmd 55: UserCommand
2025-08-19 14:28:40.4068931 UTC: D:\etmbms\vsprojects\profcppbook\ch31.ixx(134): void __cdecl ch31::exercises::ex4::trickyFunction(class ch31::exercises::ex4::ComplicatedClass *): retrieved cmd 56: UserCommand
2025-08-19 14:28:40.4073455 UTC: D:\etmbms\vsprojects\profcppbook\ch31.ixx(134): void __cdecl ch31::exercises::ex4::trickyFunction(class ch31::exercises::ex4::ComplicatedClass *): retrieved cmd 57: UserCommand
2025-08-19 14:28:40.4078448 UTC: D:\etmbms\vsprojects\profcppbook\ch31.ixx(134): void __cdecl ch31::exercises::ex4::trickyFunction(class ch31::exercises::ex4::ComplicatedClass *): retrieved cmd 58: UserCommand
2025-08-19 14:28:40.4082794 UTC: D:\etmbms\vsprojects\profcppbook\ch31.ixx(134): void __cdecl ch31::exercises::ex4::trickyFunction(class ch31::exercises::ex4::ComplicatedClass *): retrieved cmd 59: UserCommand
2025-08-19 14:28:40.4087010 UTC: D:\etmbms\vsprojects\profcppbook\ch31.ixx(134): void __cdecl ch31::exercises::ex4::trickyFunction(class ch31::exercises::ex4::ComplicatedClass *): retrieved cmd 60: UserCommand
2025-08-19 14:28:40.4091062 UTC: D:\etmbms\vsprojects\profcppbook\ch31.ixx(134): void __cdecl ch31::exercises::ex4::trickyFunction(class ch31::exercises::ex4::ComplicatedClass *): retrieved cmd 61: UserCommand
2025-08-19 14:28:40.4095512 UTC: D:\etmbms\vsprojects\profcppbook\ch31.ixx(134): void __cdecl ch31::exercises::ex4::trickyFunction(class ch31::exercises::ex4::ComplicatedClass *): retrieved cmd 62: UserCommand
2025-08-19 14:28:40.4099548 UTC: D:\etmbms\vsprojects\profcppbook\ch31.ixx(134): void __cdecl ch31::exercises::ex4::trickyFunction(class ch31::exercises::ex4::ComplicatedClass *): retrieved cmd 63: UserCommand
2025-08-19 14:28:40.4103537 UTC: D:\etmbms\vsprojects\profcppbook\ch31.ixx(134): void __cdecl ch31::exercises::ex4::trickyFunction(class ch31::exercises::ex4::ComplicatedClass *): retrieved cmd 64: UserCommand
2025-08-19 14:28:40.4108021 UTC: D:\etmbms\vsprojects\profcppbook\ch31.ixx(134): void __cdecl ch31::exercises::ex4::trickyFunction(class ch31::exercises::ex4::ComplicatedClass *): retrieved cmd 65: UserCommand
2025-08-19 14:28:40.4112807 UTC: D:\etmbms\vsprojects\profcppbook\ch31.ixx(134): void __cdecl ch31::exercises::ex4::trickyFunction(class ch31::exercises::ex4::ComplicatedClass *): retrieved cmd 66: UserCommand
2025-08-19 14:28:40.4117223 UTC: D:\etmbms\vsprojects\profcppbook\ch31.ixx(134): void __cdecl ch31::exercises::ex4::trickyFunction(class ch31::exercises::ex4::ComplicatedClass *): retrieved cmd 67: UserCommand
2025-08-19 14:28:40.4121201 UTC: D:\etmbms\vsprojects\profcppbook\ch31.ixx(134): void __cdecl ch31::exercises::ex4::trickyFunction(class ch31::exercises::ex4::ComplicatedClass *): retrieved cmd 68: UserCommand
2025-08-19 14:28:40.4125100 UTC: D:\etmbms\vsprojects\profcppbook\ch31.ixx(134): void __cdecl ch31::exercises::ex4::trickyFunction(class ch31::exercises::ex4::ComplicatedClass *): retrieved cmd 69: UserCommand
2025-08-19 14:28:40.4128969 UTC: D:\etmbms\vsprojects\profcppbook\ch31.ixx(134): void __cdecl ch31::exercises::ex4::trickyFunction(class ch31::exercises::ex4::ComplicatedClass *): retrieved cmd 70: UserCommand
2025-08-19 14:28:40.4132761 UTC: D:\etmbms\vsprojects\profcppbook\ch31.ixx(134): void __cdecl ch31::exercises::ex4::trickyFunction(class ch31::exercises::ex4::ComplicatedClass *): retrieved cmd 71: UserCommand
2025-08-19 14:28:40.4136750 UTC: D:\etmbms\vsprojects\profcppbook\ch31.ixx(134): void __cdecl ch31::exercises::ex4::trickyFunction(class ch31::exercises::ex4::ComplicatedClass *): retrieved cmd 72: UserCommand
2025-08-19 14:28:40.4140646 UTC: D:\etmbms\vsprojects\profcppbook\ch31.ixx(134): void __cdecl ch31::exercises::ex4::trickyFunction(class ch31::exercises::ex4::ComplicatedClass *): retrieved cmd 73: UserCommand
2025-08-19 14:28:40.4144749 UTC: D:\etmbms\vsprojects\profcppbook\ch31.ixx(134): void __cdecl ch31::exercises::ex4::trickyFunction(class ch31::exercises::ex4::ComplicatedClass *): retrieved cmd 74: UserCommand
2025-08-19 14:28:40.4149149 UTC: D:\etmbms\vsprojects\profcppbook\ch31.ixx(134): void __cdecl ch31::exercises::ex4::trickyFunction(class ch31::exercises::ex4::ComplicatedClass *): retrieved cmd 75: UserCommand
2025-08-19 14:28:40.4153698 UTC: D:\etmbms\vsprojects\profcppbook\ch31.ixx(134): void __cdecl ch31::exercises::ex4::trickyFunction(class ch31::exercises::ex4::ComplicatedClass *): retrieved cmd 76: UserCommand
2025-08-19 14:28:40.4158393 UTC: D:\etmbms\vsprojects\profcppbook\ch31.ixx(134): void __cdecl ch31::exercises::ex4::trickyFunction(class ch31::exercises::ex4::ComplicatedClass *): retrieved cmd 77: UserCommand
2025-08-19 14:28:40.4162434 UTC: D:\etmbms\vsprojects\profcppbook\ch31.ixx(134): void __cdecl ch31::exercises::ex4::trickyFunction(class ch31::exercises::ex4::ComplicatedClass *): retrieved cmd 78: UserCommand
2025-08-19 14:28:40.4166454 UTC: D:\etmbms\vsprojects\profcppbook\ch31.ixx(134): void __cdecl ch31::exercises::ex4::trickyFunction(class ch31::exercises::ex4::ComplicatedClass *): retrieved cmd 79: UserCommand
2025-08-19 14:28:40.4170300 UTC: D:\etmbms\vsprojects\profcppbook\ch31.ixx(134): void __cdecl ch31::exercises::ex4::trickyFunction(class ch31::exercises::ex4::ComplicatedClass *): retrieved cmd 80: UserCommand
2025-08-19 14:28:40.4174408 UTC: D:\etmbms\vsprojects\profcppbook\ch31.ixx(134): void __cdecl ch31::exercises::ex4::trickyFunction(class ch31::exercises::ex4::ComplicatedClass *): retrieved cmd 81: UserCommand
2025-08-19 14:28:40.4178449 UTC: D:\etmbms\vsprojects\profcppbook\ch31.ixx(134): void __cdecl ch31::exercises::ex4::trickyFunction(class ch31::exercises::ex4::ComplicatedClass *): retrieved cmd 82: UserCommand
2025-08-19 14:28:40.4182523 UTC: D:\etmbms\vsprojects\profcppbook\ch31.ixx(134): void __cdecl ch31::exercises::ex4::trickyFunction(class ch31::exercises::ex4::ComplicatedClass *): retrieved cmd 83: UserCommand
2025-08-19 14:28:40.4186574 UTC: D:\etmbms\vsprojects\profcppbook\ch31.ixx(134): void __cdecl ch31::exercises::ex4::trickyFunction(class ch31::exercises::ex4::ComplicatedClass *): retrieved cmd 84: UserCommand
2025-08-19 14:28:40.4190443 UTC: D:\etmbms\vsprojects\profcppbook\ch31.ixx(134): void __cdecl ch31::exercises::ex4::trickyFunction(class ch31::exercises::ex4::ComplicatedClass *): retrieved cmd 85: UserCommand
2025-08-19 14:28:40.4194706 UTC: D:\etmbms\vsprojects\profcppbook\ch31.ixx(134): void __cdecl ch31::exercises::ex4::trickyFunction(class ch31::exercises::ex4::ComplicatedClass *): retrieved cmd 86: UserCommand
2025-08-19 14:28:40.4201700 UTC: D:\etmbms\vsprojects\profcppbook\ch31.ixx(134): void __cdecl ch31::exercises::ex4::trickyFunction(class ch31::exercises::ex4::ComplicatedClass *): retrieved cmd 87: UserCommand
2025-08-19 14:28:40.4206391 UTC: D:\etmbms\vsprojects\profcppbook\ch31.ixx(134): void __cdecl ch31::exercises::ex4::trickyFunction(class ch31::exercises::ex4::ComplicatedClass *): retrieved cmd 88: UserCommand
2025-08-19 14:28:40.4210962 UTC: D:\etmbms\vsprojects\profcppbook\ch31.ixx(134): void __cdecl ch31::exercises::ex4::trickyFunction(class ch31::exercises::ex4::ComplicatedClass *): retrieved cmd 89: UserCommand
2025-08-19 14:28:40.4215361 UTC: D:\etmbms\vsprojects\profcppbook\ch31.ixx(134): void __cdecl ch31::exercises::ex4::trickyFunction(class ch31::exercises::ex4::ComplicatedClass *): retrieved cmd 90: UserCommand
2025-08-19 14:28:40.4221420 UTC: D:\etmbms\vsprojects\profcppbook\ch31.ixx(134): void __cdecl ch31::exercises::ex4::trickyFunction(class ch31::exercises::ex4::ComplicatedClass *): retrieved cmd 91: UserCommand
2025-08-19 14:28:40.4226120 UTC: D:\etmbms\vsprojects\profcppbook\ch31.ixx(134): void __cdecl ch31::exercises::ex4::trickyFunction(class ch31::exercises::ex4::ComplicatedClass *): retrieved cmd 92: UserCommand
2025-08-19 14:28:40.4230793 UTC: D:\etmbms\vsprojects\profcppbook\ch31.ixx(134): void __cdecl ch31::exercises::ex4::trickyFunction(class ch31::exercises::ex4::ComplicatedClass *): retrieved cmd 93: UserCommand
2025-08-19 14:28:40.4235131 UTC: D:\etmbms\vsprojects\profcppbook\ch31.ixx(134): void __cdecl ch31::exercises::ex4::trickyFunction(class ch31::exercises::ex4::ComplicatedClass *): retrieved cmd 94: UserCommand
2025-08-19 14:28:40.4240093 UTC: D:\etmbms\vsprojects\profcppbook\ch31.ixx(134): void __cdecl ch31::exercises::ex4::trickyFunction(class ch31::exercises::ex4::ComplicatedClass *): retrieved cmd 95: UserCommand
2025-08-19 14:28:40.4245302 UTC: D:\etmbms\vsprojects\profcppbook\ch31.ixx(134): void __cdecl ch31::exercises::ex4::trickyFunction(class ch31::exercises::ex4::ComplicatedClass *): retrieved cmd 96: UserCommand
2025-08-19 14:28:40.4249925 UTC: D:\etmbms\vsprojects\profcppbook\ch31.ixx(134): void __cdecl ch31::exercises::ex4::trickyFunction(class ch31::exercises::ex4::ComplicatedClass *): retrieved cmd 97: UserCommand
2025-08-19 14:28:40.4254301 UTC: D:\etmbms\vsprojects\profcppbook\ch31.ixx(134): void __cdecl ch31::exercises::ex4::trickyFunction(class ch31::exercises::ex4::ComplicatedClass *): retrieved cmd 98: UserCommand
2025-08-19 14:28:40.4260264 UTC: D:\etmbms\vsprojects\profcppbook\ch31.ixx(134): void __cdecl ch31::exercises::ex4::trickyFunction(class ch31::exercises::ex4::ComplicatedClass *): retrieved cmd 99: UserCommand
2025-08-19 15:18:56.5665435 UTC: D:\etmbms\vsprojects\profcppbook\ch31.ixx(152): void __cdecl ch31::exercises::ex4::test(int,char **): Argument: D:\etmbms\vsprojects\profcppbook\x64\Debug\profcppbook.exe
2025-08-19 15:18:56.5686207 UTC: D:\etmbms\vsprojects\profcppbook\ch31.ixx(152): void __cdecl ch31::exercises::ex4::test(int,char **): Argument: -d
2025-08-19 15:18:56.5690543 UTC: D:\etmbms\vsprojects\profcppbook\ch31.ixx(130): void __cdecl ch31::exercises::ex4::trickyFunction(class ch31::exercises::ex4::ComplicatedClass *): given argument: ComplicatedClass
2025-08-19 15:18:56.5695169 UTC: D:\etmbms\vsprojects\profcppbook\ch31.ixx(134): void __cdecl ch31::exercises::ex4::trickyFunction(class ch31::exercises::ex4::ComplicatedClass *): retrieved cmd 0: UserCommand
2025-08-19 15:18:56.5699950 UTC: D:\etmbms\vsprojects\profcppbook\ch31.ixx(134): void __cdecl ch31::exercises::ex4::trickyFunction(class ch31::exercises::ex4::ComplicatedClass *): retrieved cmd 1: UserCommand
2025-08-19 15:18:56.5704103 UTC: D:\etmbms\vsprojects\profcppbook\ch31.ixx(134): void __cdecl ch31::exercises::ex4::trickyFunction(class ch31::exercises::ex4::ComplicatedClass *): retrieved cmd 2: UserCommand
2025-08-19 15:18:56.5708395 UTC: D:\etmbms\vsprojects\profcppbook\ch31.ixx(134): void __cdecl ch31::exercises::ex4::trickyFunction(class ch31::exercises::ex4::ComplicatedClass *): retrieved cmd 3: UserCommand
2025-08-19 15:18:56.5712471 UTC: D:\etmbms\vsprojects\profcppbook\ch31.ixx(134): void __cdecl ch31::exercises::ex4::trickyFunction(class ch31::exercises::ex4::ComplicatedClass *): retrieved cmd 4: UserCommand
2025-08-19 15:18:56.5716307 UTC: D:\etmbms\vsprojects\profcppbook\ch31.ixx(134): void __cdecl ch31::exercises::ex4::trickyFunction(class ch31::exercises::ex4::ComplicatedClass *): retrieved cmd 5: UserCommand
2025-08-19 15:18:56.5720309 UTC: D:\etmbms\vsprojects\profcppbook\ch31.ixx(134): void __cdecl ch31::exercises::ex4::trickyFunction(class ch31::exercises::ex4::ComplicatedClass *): retrieved cmd 6: UserCommand
2025-08-19 15:18:56.5724602 UTC: D:\etmbms\vsprojects\profcppbook\ch31.ixx(134): void __cdecl ch31::exercises::ex4::trickyFunction(class ch31::exercises::ex4::ComplicatedClass *): retrieved cmd 7: UserCommand
2025-08-19 15:18:56.5728737 UTC: D:\etmbms\vsprojects\profcppbook\ch31.ixx(134): void __cdecl ch31::exercises::ex4::trickyFunction(class ch31::exercises::ex4::ComplicatedClass *): retrieved cmd 8: UserCommand
2025-08-19 15:18:56.5732962 UTC: D:\etmbms\vsprojects\profcppbook\ch31.ixx(134): void __cdecl ch31::exercises::ex4::trickyFunction(class ch31::exercises::ex4::ComplicatedClass *): retrieved cmd 9: UserCommand
2025-08-19 15:18:56.5737176 UTC: D:\etmbms\vsprojects\profcppbook\ch31.ixx(134): void __cdecl ch31::exercises::ex4::trickyFunction(class ch31::exercises::ex4::ComplicatedClass *): retrieved cmd 10: UserCommand
2025-08-19 15:18:56.5741259 UTC: D:\etmbms\vsprojects\profcppbook\ch31.ixx(134): void __cdecl ch31::exercises::ex4::trickyFunction(class ch31::exercises::ex4::ComplicatedClass *): retrieved cmd 11: UserCommand
2025-08-19 15:18:56.5745476 UTC: D:\etmbms\vsprojects\profcppbook\ch31.ixx(134): void __cdecl ch31::exercises::ex4::trickyFunction(class ch31::exercises::ex4::ComplicatedClass *): retrieved cmd 12: UserCommand
2025-08-19 15:18:56.5749465 UTC: D:\etmbms\vsprojects\profcppbook\ch31.ixx(134): void __cdecl ch31::exercises::ex4::trickyFunction(class ch31::exercises::ex4::ComplicatedClass *): retrieved cmd 13: UserCommand
2025-08-19 15:18:56.5753284 UTC: D:\etmbms\vsprojects\profcppbook\ch31.ixx(134): void __cdecl ch31::exercises::ex4::trickyFunction(class ch31::exercises::ex4::ComplicatedClass *): retrieved cmd 14: UserCommand
2025-08-19 15:18:56.5757352 UTC: D:\etmbms\vsprojects\profcppbook\ch31.ixx(134): void __cdecl ch31::exercises::ex4::trickyFunction(class ch31::exercises::ex4::ComplicatedClass *): retrieved cmd 15: UserCommand
2025-08-19 15:18:56.5761498 UTC: D:\etmbms\vsprojects\profcppbook\ch31.ixx(134): void __cdecl ch31::exercises::ex4::trickyFunction(class ch31::exercises::ex4::ComplicatedClass *): retrieved cmd 16: UserCommand
2025-08-19 15:18:56.5765481 UTC: D:\etmbms\vsprojects\profcppbook\ch31.ixx(134): void __cdecl ch31::exercises::ex4::trickyFunction(class ch31::exercises::ex4::ComplicatedClass *): retrieved cmd 17: UserCommand
2025-08-19 15:18:56.5769860 UTC: D:\etmbms\vsprojects\profcppbook\ch31.ixx(134): void __cdecl ch31::exercises::ex4::trickyFunction(class ch31::exercises::ex4::ComplicatedClass *): retrieved cmd 18: UserCommand
2025-08-19 15:18:56.5774344 UTC: D:\etmbms\vsprojects\profcppbook\ch31.ixx(134): void __cdecl ch31::exercises::ex4::trickyFunction(class ch31::exercises::ex4::ComplicatedClass *): retrieved cmd 19: UserCommand
2025-08-19 15:18:56.5778635 UTC: D:\etmbms\vsprojects\profcppbook\ch31.ixx(134): void __cdecl ch31::exercises::ex4::trickyFunction(class ch31::exercises::ex4::ComplicatedClass *): retrieved cmd 20: UserCommand
2025-08-19 15:18:56.5782953 UTC: D:\etmbms\vsprojects\profcppbook\ch31.ixx(134): void __cdecl ch31::exercises::ex4::trickyFunction(class ch31::exercises::ex4::ComplicatedClass *): retrieved cmd 21: UserCommand
2025-08-19 15:18:56.5787606 UTC: D:\etmbms\vsprojects\profcppbook\ch31.ixx(134): void __cdecl ch31::exercises::ex4::trickyFunction(class ch31::exercises::ex4::ComplicatedClass *): retrieved cmd 22: UserCommand
2025-08-19 15:18:56.5793245 UTC: D:\etmbms\vsprojects\profcppbook\ch31.ixx(134): void __cdecl ch31::exercises::ex4::trickyFunction(class ch31::exercises::ex4::ComplicatedClass *): retrieved cmd 23: UserCommand
2025-08-19 15:18:56.5798797 UTC: D:\etmbms\vsprojects\profcppbook\ch31.ixx(134): void __cdecl ch31::exercises::ex4::trickyFunction(class ch31::exercises::ex4::ComplicatedClass *): retrieved cmd 24: UserCommand
2025-08-19 15:18:56.5805939 UTC: D:\etmbms\vsprojects\profcppbook\ch31.ixx(134): void __cdecl ch31::exercises::ex4::trickyFunction(class ch31::exercises::ex4::ComplicatedClass *): retrieved cmd 25: UserCommand
2025-08-19 15:18:56.5810423 UTC: D:\etmbms\vsprojects\profcppbook\ch31.ixx(134): void __cdecl ch31::exercises::ex4::trickyFunction(class ch31::exercises::ex4::ComplicatedClass *): retrieved cmd 26: UserCommand
2025-08-19 15:18:56.5814954 UTC: D:\etmbms\vsprojects\profcppbook\ch31.ixx(134): void __cdecl ch31::exercises::ex4::trickyFunction(class ch31::exercises::ex4::ComplicatedClass *): retrieved cmd 27: UserCommand
2025-08-19 15:18:56.5820348 UTC: D:\etmbms\vsprojects\profcppbook\ch31.ixx(134): void __cdecl ch31::exercises::ex4::trickyFunction(class ch31::exercises::ex4::ComplicatedClass *): retrieved cmd 28: UserCommand
2025-08-19 15:18:56.5825333 UTC: D:\etmbms\vsprojects\profcppbook\ch31.ixx(134): void __cdecl ch31::exercises::ex4::trickyFunction(class ch31::exercises::ex4::ComplicatedClass *): retrieved cmd 29: UserCommand
2025-08-19 15:18:56.5829875 UTC: D:\etmbms\vsprojects\profcppbook\ch31.ixx(134): void __cdecl ch31::exercises::ex4::trickyFunction(class ch31::exercises::ex4::ComplicatedClass *): retrieved cmd 30: UserCommand
2025-08-19 15:18:56.5834313 UTC: D:\etmbms\vsprojects\profcppbook\ch31.ixx(134): void __cdecl ch31::exercises::ex4::trickyFunction(class ch31::exercises::ex4::ComplicatedClass *): retrieved cmd 31: UserCommand
2025-08-19 15:18:56.5838732 UTC: D:\etmbms\vsprojects\profcppbook\ch31.ixx(134): void __cdecl ch31::exercises::ex4::trickyFunction(class ch31::exercises::ex4::ComplicatedClass *): retrieved cmd 32: UserCommand
2025-08-19 15:18:56.5843149 UTC: D:\etmbms\vsprojects\profcppbook\ch31.ixx(134): void __cdecl ch31::exercises::ex4::trickyFunction(class ch31::exercises::ex4::ComplicatedClass *): retrieved cmd 33: UserCommand
2025-08-19 15:18:56.5847363 UTC: D:\etmbms\vsprojects\profcppbook\ch31.ixx(134): void __cdecl ch31::exercises::ex4::trickyFunction(class ch31::exercises::ex4::ComplicatedClass *): retrieved cmd 34: UserCommand
2025-08-19 15:18:56.5851823 UTC: D:\etmbms\vsprojects\profcppbook\ch31.ixx(134): void __cdecl ch31::exercises::ex4::trickyFunction(class ch31::exercises::ex4::ComplicatedClass *): retrieved cmd 35: UserCommand
2025-08-19 15:18:56.5856311 UTC: D:\etmbms\vsprojects\profcppbook\ch31.ixx(134): void __cdecl ch31::exercises::ex4::trickyFunction(class ch31::exercises::ex4::ComplicatedClass *): retrieved cmd 36: UserCommand
2025-08-19 15:18:56.5860695 UTC: D:\etmbms\vsprojects\profcppbook\ch31.ixx(134): void __cdecl ch31::exercises::ex4::trickyFunction(class ch31::exercises::ex4::ComplicatedClass *): retrieved cmd 37: UserCommand
2025-08-19 15:18:56.5865068 UTC: D:\etmbms\vsprojects\profcppbook\ch31.ixx(134): void __cdecl ch31::exercises::ex4::trickyFunction(class ch31::exercises::ex4::ComplicatedClass *): retrieved cmd 38: UserCommand
2025-08-19 15:18:56.5869435 UTC: D:\etmbms\vsprojects\profcppbook\ch31.ixx(134): void __cdecl ch31::exercises::ex4::trickyFunction(class ch31::exercises::ex4::ComplicatedClass *): retrieved cmd 39: UserCommand
2025-08-19 15:18:56.5874223 UTC: D:\etmbms\vsprojects\profcppbook\ch31.ixx(134): void __cdecl ch31::exercises::ex4::trickyFunction(class ch31::exercises::ex4::ComplicatedClass *): retrieved cmd 40: UserCommand
2025-08-19 15:18:56.5879103 UTC: D:\etmbms\vsprojects\profcppbook\ch31.ixx(134): void __cdecl ch31::exercises::ex4::trickyFunction(class ch31::exercises::ex4::ComplicatedClass *): retrieved cmd 41: UserCommand
2025-08-19 15:18:56.5884207 UTC: D:\etmbms\vsprojects\profcppbook\ch31.ixx(134): void __cdecl ch31::exercises::ex4::trickyFunction(class ch31::exercises::ex4::ComplicatedClass *): retrieved cmd 42: UserCommand
2025-08-19 15:18:56.5888917 UTC: D:\etmbms\vsprojects\profcppbook\ch31.ixx(134): void __cdecl ch31::exercises::ex4::trickyFunction(class ch31::exercises::ex4::ComplicatedClass *): retrieved cmd 43: UserCommand
2025-08-19 15:18:56.5893426 UTC: D:\etmbms\vsprojects\profcppbook\ch31.ixx(134): void __cdecl ch31::exercises::ex4::trickyFunction(class ch31::exercises::ex4::ComplicatedClass *): retrieved cmd 44: UserCommand
2025-08-19 15:18:56.5898703 UTC: D:\etmbms\vsprojects\profcppbook\ch31.ixx(134): void __cdecl ch31::exercises::ex4::trickyFunction(class ch31::exercises::ex4::ComplicatedClass *): retrieved cmd 45: UserCommand
2025-08-19 15:18:56.5903457 UTC: D:\etmbms\vsprojects\profcppbook\ch31.ixx(134): void __cdecl ch31::exercises::ex4::trickyFunction(class ch31::exercises::ex4::ComplicatedClass *): retrieved cmd 46: UserCommand
2025-08-19 15:18:56.5907858 UTC: D:\etmbms\vsprojects\profcppbook\ch31.ixx(134): void __cdecl ch31::exercises::ex4::trickyFunction(class ch31::exercises::ex4::ComplicatedClass *): retrieved cmd 47: UserCommand
2025-08-19 15:18:56.5912128 UTC: D:\etmbms\vsprojects\profcppbook\ch31.ixx(134): void __cdecl ch31::exercises::ex4::trickyFunction(class ch31::exercises::ex4::ComplicatedClass *): retrieved cmd 48: UserCommand
2025-08-19 15:18:56.5916708 UTC: D:\etmbms\vsprojects\profcppbook\ch31.ixx(134): void __cdecl ch31::exercises::ex4::trickyFunction(class ch31::exercises::ex4::ComplicatedClass *): retrieved cmd 49: UserCommand
2025-08-19 15:18:56.5922004 UTC: D:\etmbms\vsprojects\profcppbook\ch31.ixx(134): void __cdecl ch31::exercises::ex4::trickyFunction(class ch31::exercises::ex4::ComplicatedClass *): retrieved cmd 50: UserCommand
2025-08-19 15:18:56.5926226 UTC: D:\etmbms\vsprojects\profcppbook\ch31.ixx(134): void __cdecl ch31::exercises::ex4::trickyFunction(class ch31::exercises::ex4::ComplicatedClass *): retrieved cmd 51: UserCommand
2025-08-19 15:18:56.5930497 UTC: D:\etmbms\vsprojects\profcppbook\ch31.ixx(134): void __cdecl ch31::exercises::ex4::trickyFunction(class ch31::exercises::ex4::ComplicatedClass *): retrieved cmd 52: UserCommand
2025-08-19 15:18:56.5934543 UTC: D:\etmbms\vsprojects\profcppbook\ch31.ixx(134): void __cdecl ch31::exercises::ex4::trickyFunction(class ch31::exercises::ex4::ComplicatedClass *): retrieved cmd 53: UserCommand
2025-08-19 15:18:56.5938812 UTC: D:\etmbms\vsprojects\profcppbook\ch31.ixx(134): void __cdecl ch31::exercises::ex4::trickyFunction(class ch31::exercises::ex4::ComplicatedClass *): retrieved cmd 54: UserCommand
2025-08-19 15:18:56.5943582 UTC: D:\etmbms\vsprojects\profcppbook\ch31.ixx(134): void __cdecl ch31::exercises::ex4::trickyFunction(class ch31::exercises::ex4::ComplicatedClass *): retrieved cmd 55: UserCommand
2025-08-19 15:18:56.5949535 UTC: D:\etmbms\vsprojects\profcppbook\ch31.ixx(134): void __cdecl ch31::exercises::ex4::trickyFunction(class ch31::exercises::ex4::ComplicatedClass *): retrieved cmd 56: UserCommand
2025-08-19 15:18:56.5954382 UTC: D:\etmbms\vsprojects\profcppbook\ch31.ixx(134): void __cdecl ch31::exercises::ex4::trickyFunction(class ch31::exercises::ex4::ComplicatedClass *): retrieved cmd 57: UserCommand
2025-08-19 15:18:56.5959830 UTC: D:\etmbms\vsprojects\profcppbook\ch31.ixx(134): void __cdecl ch31::exercises::ex4::trickyFunction(class ch31::exercises::ex4::ComplicatedClass *): retrieved cmd 58: UserCommand
2025-08-19 15:18:56.5968337 UTC: D:\etmbms\vsprojects\profcppbook\ch31.ixx(134): void __cdecl ch31::exercises::ex4::trickyFunction(class ch31::exercises::ex4::ComplicatedClass *): retrieved cmd 59: UserCommand
2025-08-19 15:18:56.5973220 UTC: D:\etmbms\vsprojects\profcppbook\ch31.ixx(134): void __cdecl ch31::exercises::ex4::trickyFunction(class ch31::exercises::ex4::ComplicatedClass *): retrieved cmd 60: UserCommand
2025-08-19 15:18:56.5977863 UTC: D:\etmbms\vsprojects\profcppbook\ch31.ixx(134): void __cdecl ch31::exercises::ex4::trickyFunction(class ch31::exercises::ex4::ComplicatedClass *): retrieved cmd 61: UserCommand
2025-08-19 15:18:56.5982276 UTC: D:\etmbms\vsprojects\profcppbook\ch31.ixx(134): void __cdecl ch31::exercises::ex4::trickyFunction(class ch31::exercises::ex4::ComplicatedClass *): retrieved cmd 62: UserCommand
2025-08-19 15:18:56.5986639 UTC: D:\etmbms\vsprojects\profcppbook\ch31.ixx(134): void __cdecl ch31::exercises::ex4::trickyFunction(class ch31::exercises::ex4::ComplicatedClass *): retrieved cmd 63: UserCommand
2025-08-19 15:18:56.5990981 UTC: D:\etmbms\vsprojects\profcppbook\ch31.ixx(134): void __cdecl ch31::exercises::ex4::trickyFunction(class ch31::exercises::ex4::ComplicatedClass *): retrieved cmd 64: UserCommand
2025-08-19 15:18:56.5995323 UTC: D:\etmbms\vsprojects\profcppbook\ch31.ixx(134): void __cdecl ch31::exercises::ex4::trickyFunction(class ch31::exercises::ex4::ComplicatedClass *): retrieved cmd 65: UserCommand
2025-08-19 15:18:56.5999873 UTC: D:\etmbms\vsprojects\profcppbook\ch31.ixx(134): void __cdecl ch31::exercises::ex4::trickyFunction(class ch31::exercises::ex4::ComplicatedClass *): retrieved cmd 66: UserCommand
2025-08-19 15:18:56.6004455 UTC: D:\etmbms\vsprojects\profcppbook\ch31.ixx(134): void __cdecl ch31::exercises::ex4::trickyFunction(class ch31::exercises::ex4::ComplicatedClass *): retrieved cmd 67: UserCommand
2025-08-19 15:18:56.6009289 UTC: D:\etmbms\vsprojects\profcppbook\ch31.ixx(134): void __cdecl ch31::exercises::ex4::trickyFunction(class ch31::exercises::ex4::ComplicatedClass *): retrieved cmd 68: UserCommand
2025-08-19 15:18:56.6016071 UTC: D:\etmbms\vsprojects\profcppbook\ch31.ixx(134): void __cdecl ch31::exercises::ex4::trickyFunction(class ch31::exercises::ex4::ComplicatedClass *): retrieved cmd 69: UserCommand
2025-08-19 15:18:56.6021854 UTC: D:\etmbms\vsprojects\profcppbook\ch31.ixx(134): void __cdecl ch31::exercises::ex4::trickyFunction(class ch31::exercises::ex4::ComplicatedClass *): retrieved cmd 70: UserCommand
2025-08-19 15:18:56.6026161 UTC: D:\etmbms\vsprojects\profcppbook\ch31.ixx(134): void __cdecl ch31::exercises::ex4::trickyFunction(class ch31::exercises::ex4::ComplicatedClass *): retrieved cmd 71: UserCommand
2025-08-19 15:18:56.6030535 UTC: D:\etmbms\vsprojects\profcppbook\ch31.ixx(134): void __cdecl ch31::exercises::ex4::trickyFunction(class ch31::exercises::ex4::ComplicatedClass *): retrieved cmd 72: UserCommand
2025-08-19 15:18:56.6034577 UTC: D:\etmbms\vsprojects\profcppbook\ch31.ixx(134): void __cdecl ch31::exercises::ex4::trickyFunction(class ch31::exercises::ex4::ComplicatedClass *): retrieved cmd 73: UserCommand
2025-08-19 15:18:56.6038613 UTC: D:\etmbms\vsprojects\profcppbook\ch31.ixx(134): void __cdecl ch31::exercises::ex4::trickyFunction(class ch31::exercises::ex4::ComplicatedClass *): retrieved cmd 74: UserCommand
2025-08-19 15:18:56.6042797 UTC: D:\etmbms\vsprojects\profcppbook\ch31.ixx(134): void __cdecl ch31::exercises::ex4::trickyFunction(class ch31::exercises::ex4::ComplicatedClass *): retrieved cmd 75: UserCommand
2025-08-19 15:18:56.6046884 UTC: D:\etmbms\vsprojects\profcppbook\ch31.ixx(134): void __cdecl ch31::exercises::ex4::trickyFunction(class ch31::exercises::ex4::ComplicatedClass *): retrieved cmd 76: UserCommand
2025-08-19 15:18:56.6050978 UTC: D:\etmbms\vsprojects\profcppbook\ch31.ixx(134): void __cdecl ch31::exercises::ex4::trickyFunction(class ch31::exercises::ex4::ComplicatedClass *): retrieved cmd 77: UserCommand
2025-08-19 15:18:56.6054836 UTC: D:\etmbms\vsprojects\profcppbook\ch31.ixx(134): void __cdecl ch31::exercises::ex4::trickyFunction(class ch31::exercises::ex4::ComplicatedClass *): retrieved cmd 78: UserCommand
2025-08-19 15:18:56.6058741 UTC: D:\etmbms\vsprojects\profcppbook\ch31.ixx(134): void __cdecl ch31::exercises::ex4::trickyFunction(class ch31::exercises::ex4::ComplicatedClass *): retrieved cmd 79: UserCommand
2025-08-19 15:18:56.6062941 UTC: D:\etmbms\vsprojects\profcppbook\ch31.ixx(134): void __cdecl ch31::exercises::ex4::trickyFunction(class ch31::exercises::ex4::ComplicatedClass *): retrieved cmd 80: UserCommand
2025-08-19 15:18:56.6067608 UTC: D:\etmbms\vsprojects\profcppbook\ch31.ixx(134): void __cdecl ch31::exercises::ex4::trickyFunction(class ch31::exercises::ex4::ComplicatedClass *): retrieved cmd 81: UserCommand
2025-08-19 15:18:56.6071843 UTC: D:\etmbms\vsprojects\profcppbook\ch31.ixx(134): void __cdecl ch31::exercises::ex4::trickyFunction(class ch31::exercises::ex4::ComplicatedClass *): retrieved cmd 82: UserCommand
2025-08-19 15:18:56.6076163 UTC: D:\etmbms\vsprojects\profcppbook\ch31.ixx(134): void __cdecl ch31::exercises::ex4::trickyFunction(class ch31::exercises::ex4::ComplicatedClass *): retrieved cmd 83: UserCommand
2025-08-19 15:18:56.6080361 UTC: D:\etmbms\vsprojects\profcppbook\ch31.ixx(134): void __cdecl ch31::exercises::ex4::trickyFunction(class ch31::exercises::ex4::ComplicatedClass *): retrieved cmd 84: UserCommand
2025-08-19 15:18:56.6084408 UTC: D:\etmbms\vsprojects\profcppbook\ch31.ixx(134): void __cdecl ch31::exercises::ex4::trickyFunction(class ch31::exercises::ex4::ComplicatedClass *): retrieved cmd 85: UserCommand
2025-08-19 15:18:56.6088813 UTC: D:\etmbms\vsprojects\profcppbook\ch31.ixx(134): void __cdecl ch31::exercises::ex4::trickyFunction(class ch31::exercises::ex4::ComplicatedClass *): retrieved cmd 86: UserCommand
2025-08-19 15:18:56.6093386 UTC: D:\etmbms\vsprojects\profcppbook\ch31.ixx(134): void __cdecl ch31::exercises::ex4::trickyFunction(class ch31::exercises::ex4::ComplicatedClass *): retrieved cmd 87: UserCommand
2025-08-19 15:18:56.6097872 UTC: D:\etmbms\vsprojects\profcppbook\ch31.ixx(134): void __cdecl ch31::exercises::ex4::trickyFunction(class ch31::exercises::ex4::ComplicatedClass *): retrieved cmd 88: UserCommand
2025-08-19 15:18:56.6102429 UTC: D:\etmbms\vsprojects\profcppbook\ch31.ixx(134): void __cdecl ch31::exercises::ex4::trickyFunction(class ch31::exercises::ex4::ComplicatedClass *): retrieved cmd 89: UserCommand
2025-08-19 15:18:56.6107164 UTC: D:\etmbms\vsprojects\profcppbook\ch31.ixx(134): void __cdecl ch31::exercises::ex4::trickyFunction(class ch31::exercises::ex4::ComplicatedClass *): retrieved cmd 90: UserCommand
2025-08-19 15:18:56.6112009 UTC: D:\etmbms\vsprojects\profcppbook\ch31.ixx(134): void __cdecl ch31::exercises::ex4::trickyFunction(class ch31::exercises::ex4::ComplicatedClass *): retrieved cmd 91: UserCommand
2025-08-19 15:18:56.6116611 UTC: D:\etmbms\vsprojects\profcppbook\ch31.ixx(134): void __cdecl ch31::exercises::ex4::trickyFunction(class ch31::exercises::ex4::ComplicatedClass *): retrieved cmd 92: UserCommand
2025-08-19 15:18:56.6121292 UTC: D:\etmbms\vsprojects\profcppbook\ch31.ixx(134): void __cdecl ch31::exercises::ex4::trickyFunction(class ch31::exercises::ex4::ComplicatedClass *): retrieved cmd 93: UserCommand
2025-08-19 15:18:56.6126181 UTC: D:\etmbms\vsprojects\profcppbook\ch31.ixx(134): void __cdecl ch31::exercises::ex4::trickyFunction(class ch31::exercises::ex4::ComplicatedClass *): retrieved cmd 94: UserCommand
2025-08-19 15:18:56.6130985 UTC: D:\etmbms\vsprojects\profcppbook\ch31.ixx(134): void __cdecl ch31::exercises::ex4::trickyFunction(class ch31::exercises::ex4::ComplicatedClass *): retrieved cmd 95: UserCommand
2025-08-19 15:18:56.6135814 UTC: D:\etmbms\vsprojects\profcppbook\ch31.ixx(134): void __cdecl ch31::exercises::ex4::trickyFunction(class ch31::exercises::ex4::ComplicatedClass *): retrieved cmd 96: UserCommand
2025-08-19 15:18:56.6141251 UTC: D:\etmbms\vsprojects\profcppbook\ch31.ixx(134): void __cdecl ch31::exercises::ex4::trickyFunction(class ch31::exercises::ex4::ComplicatedClass *): retrieved cmd 97: UserCommand
2025-08-19 15:18:56.6145881 UTC: D:\etmbms\vsprojects\profcppbook\ch31.ixx(134): void __cdecl ch31::exercises::ex4::trickyFunction(class ch31::exercises::ex4::ComplicatedClass *): retrieved cmd 98: UserCommand
2025-08-19 15:18:56.6150123 UTC: D:\etmbms\vsprojects\profcppbook\ch31.ixx(134): void __cdecl ch31::exercises::ex4::trickyFunction(class ch31::exercises::ex4::ComplicatedClass *): retrieved cmd 99: UserCommand
2025-08-19 16:00:41.6063506 UTC: D:\etmbms\vsprojects\profcppbook\ch31.ixx(78): __cdecl ch31::exercises::ex4::log::log<const char(&)[11],char*&>(const char (&)[11],char *&): Argument: D:\etmbms\vsprojects\profcppbook\x64\Debug\profcppbook.exe
2025-08-19 16:00:41.6087430 UTC: D:\etmbms\vsprojects\profcppbook\ch31.ixx(78): __cdecl ch31::exercises::ex4::log::log<const char(&)[11],char*&>(const char (&)[11],char *&): Argument: -d
2025-08-19 16:00:41.6092410 UTC: D:\etmbms\vsprojects\profcppbook\ch31.ixx(78): __cdecl ch31::exercises::ex4::log::log<const char(&)[17],class ch31::exercises::ex4::ComplicatedClass&>(const char (&)[17],class ch31::exercises::ex4::ComplicatedClass &): given argument: ComplicatedClass
2025-08-19 16:00:41.6097737 UTC: D:\etmbms\vsprojects\profcppbook\ch31.ixx(78): __cdecl ch31::exercises::ex4::log::log<const char(&)[15],unsigned __int64&,const char(&)[3],class ch31::exercises::ex4::UserCommand&>(const char (&)[15],unsigned __int64 &,const char (&)[3],class ch31::exercises::ex4::UserCommand &): retrieved cmd 0: UserCommand
2025-08-19 16:00:41.6105273 UTC: D:\etmbms\vsprojects\profcppbook\ch31.ixx(78): __cdecl ch31::exercises::ex4::log::log<const char(&)[15],unsigned __int64&,const char(&)[3],class ch31::exercises::ex4::UserCommand&>(const char (&)[15],unsigned __int64 &,const char (&)[3],class ch31::exercises::ex4::UserCommand &): retrieved cmd 1: UserCommand
2025-08-19 16:00:41.6110316 UTC: D:\etmbms\vsprojects\profcppbook\ch31.ixx(78): __cdecl ch31::exercises::ex4::log::log<const char(&)[15],unsigned __int64&,const char(&)[3],class ch31::exercises::ex4::UserCommand&>(const char (&)[15],unsigned __int64 &,const char (&)[3],class ch31::exercises::ex4::UserCommand &): retrieved cmd 2: UserCommand
2025-08-19 16:00:41.6115641 UTC: D:\etmbms\vsprojects\profcppbook\ch31.ixx(78): __cdecl ch31::exercises::ex4::log::log<const char(&)[15],unsigned __int64&,const char(&)[3],class ch31::exercises::ex4::UserCommand&>(const char (&)[15],unsigned __int64 &,const char (&)[3],class ch31::exercises::ex4::UserCommand &): retrieved cmd 3: UserCommand
2025-08-19 16:00:41.6120780 UTC: D:\etmbms\vsprojects\profcppbook\ch31.ixx(78): __cdecl ch31::exercises::ex4::log::log<const char(&)[15],unsigned __int64&,const char(&)[3],class ch31::exercises::ex4::UserCommand&>(const char (&)[15],unsigned __int64 &,const char (&)[3],class ch31::exercises::ex4::UserCommand &): retrieved cmd 4: UserCommand
2025-08-19 16:00:41.6125498 UTC: D:\etmbms\vsprojects\profcppbook\ch31.ixx(78): __cdecl ch31::exercises::ex4::log::log<const char(&)[15],unsigned __int64&,const char(&)[3],class ch31::exercises::ex4::UserCommand&>(const char (&)[15],unsigned __int64 &,const char (&)[3],class ch31::exercises::ex4::UserCommand &): retrieved cmd 5: UserCommand
2025-08-19 16:00:41.6130107 UTC: D:\etmbms\vsprojects\profcppbook\ch31.ixx(78): __cdecl ch31::exercises::ex4::log::log<const char(&)[15],unsigned __int64&,const char(&)[3],class ch31::exercises::ex4::UserCommand&>(const char (&)[15],unsigned __int64 &,const char (&)[3],class ch31::exercises::ex4::UserCommand &): retrieved cmd 6: UserCommand
2025-08-19 16:00:41.6134749 UTC: D:\etmbms\vsprojects\profcppbook\ch31.ixx(78): __cdecl ch31::exercises::ex4::log::log<const char(&)[15],unsigned __int64&,const char(&)[3],class ch31::exercises::ex4::UserCommand&>(const char (&)[15],unsigned __int64 &,const char (&)[3],class ch31::exercises::ex4::UserCommand &): retrieved cmd 7: UserCommand
2025-08-19 16:00:41.6139363 UTC: D:\etmbms\vsprojects\profcppbook\ch31.ixx(78): __cdecl ch31::exercises::ex4::log::log<const char(&)[15],unsigned __int64&,const char(&)[3],class ch31::exercises::ex4::UserCommand&>(const char (&)[15],unsigned __int64 &,const char (&)[3],class ch31::exercises::ex4::UserCommand &): retrieved cmd 8: UserCommand
2025-08-19 16:00:41.6143848 UTC: D:\etmbms\vsprojects\profcppbook\ch31.ixx(78): __cdecl ch31::exercises::ex4::log::log<const char(&)[15],unsigned __int64&,const char(&)[3],class ch31::exercises::ex4::UserCommand&>(const char (&)[15],unsigned __int64 &,const char (&)[3],class ch31::exercises::ex4::UserCommand &): retrieved cmd 9: UserCommand
2025-08-19 16:00:41.6148730 UTC: D:\etmbms\vsprojects\profcppbook\ch31.ixx(78): __cdecl ch31::exercises::ex4::log::log<const char(&)[15],unsigned __int64&,const char(&)[3],class ch31::exercises::ex4::UserCommand&>(const char (&)[15],unsigned __int64 &,const char (&)[3],class ch31::exercises::ex4::UserCommand &): retrieved cmd 10: UserCommand
2025-08-19 16:00:41.6153228 UTC: D:\etmbms\vsprojects\profcppbook\ch31.ixx(78): __cdecl ch31::exercises::ex4::log::log<const char(&)[15],unsigned __int64&,const char(&)[3],class ch31::exercises::ex4::UserCommand&>(const char (&)[15],unsigned __int64 &,const char (&)[3],class ch31::exercises::ex4::UserCommand &): retrieved cmd 11: UserCommand
2025-08-19 16:00:41.6157699 UTC: D:\etmbms\vsprojects\profcppbook\ch31.ixx(78): __cdecl ch31::exercises::ex4::log::log<const char(&)[15],unsigned __int64&,const char(&)[3],class ch31::exercises::ex4::UserCommand&>(const char (&)[15],unsigned __int64 &,const char (&)[3],class ch31::exercises::ex4::UserCommand &): retrieved cmd 12: UserCommand
2025-08-19 16:00:41.6162151 UTC: D:\etmbms\vsprojects\profcppbook\ch31.ixx(78): __cdecl ch31::exercises::ex4::log::log<const char(&)[15],unsigned __int64&,const char(&)[3],class ch31::exercises::ex4::UserCommand&>(const char (&)[15],unsigned __int64 &,const char (&)[3],class ch31::exercises::ex4::UserCommand &): retrieved cmd 13: UserCommand
2025-08-19 16:00:41.6166774 UTC: D:\etmbms\vsprojects\profcppbook\ch31.ixx(78): __cdecl ch31::exercises::ex4::log::log<const char(&)[15],unsigned __int64&,const char(&)[3],class ch31::exercises::ex4::UserCommand&>(const char (&)[15],unsigned __int64 &,const char (&)[3],class ch31::exercises::ex4::UserCommand &): retrieved cmd 14: UserCommand
2025-08-19 16:00:41.6171490 UTC: D:\etmbms\vsprojects\profcppbook\ch31.ixx(78): __cdecl ch31::exercises::ex4::log::log<const char(&)[15],unsigned __int64&,const char(&)[3],class ch31::exercises::ex4::UserCommand&>(const char (&)[15],unsigned __int64 &,const char (&)[3],class ch31::exercises::ex4::UserCommand &): retrieved cmd 15: UserCommand
2025-08-19 16:00:41.6176290 UTC: D:\etmbms\vsprojects\profcppbook\ch31.ixx(78): __cdecl ch31::exercises::ex4::log::log<const char(&)[15],unsigned __int64&,const char(&)[3],class ch31::exercises::ex4::UserCommand&>(const char (&)[15],unsigned __int64 &,const char (&)[3],class ch31::exercises::ex4::UserCommand &): retrieved cmd 16: UserCommand
2025-08-19 16:00:41.6180841 UTC: D:\etmbms\vsprojects\profcppbook\ch31.ixx(78): __cdecl ch31::exercises::ex4::log::log<const char(&)[15],unsigned __int64&,const char(&)[3],class ch31::exercises::ex4::UserCommand&>(const char (&)[15],unsigned __int64 &,const char (&)[3],class ch31::exercises::ex4::UserCommand &): retrieved cmd 17: UserCommand
2025-08-19 16:00:41.6185623 UTC: D:\etmbms\vsprojects\profcppbook\ch31.ixx(78): __cdecl ch31::exercises::ex4::log::log<const char(&)[15],unsigned __int64&,const char(&)[3],class ch31::exercises::ex4::UserCommand&>(const char (&)[15],unsigned __int64 &,const char (&)[3],class ch31::exercises::ex4::UserCommand &): retrieved cmd 18: UserCommand
2025-08-19 16:00:41.6190445 UTC: D:\etmbms\vsprojects\profcppbook\ch31.ixx(78): __cdecl ch31::exercises::ex4::log::log<const char(&)[15],unsigned __int64&,const char(&)[3],class ch31::exercises::ex4::UserCommand&>(const char (&)[15],unsigned __int64 &,const char (&)[3],class ch31::exercises::ex4::UserCommand &): retrieved cmd 19: UserCommand
2025-08-19 16:00:41.6195240 UTC: D:\etmbms\vsprojects\profcppbook\ch31.ixx(78): __cdecl ch31::exercises::ex4::log::log<const char(&)[15],unsigned __int64&,const char(&)[3],class ch31::exercises::ex4::UserCommand&>(const char (&)[15],unsigned __int64 &,const char (&)[3],class ch31::exercises::ex4::UserCommand &): retrieved cmd 20: UserCommand
2025-08-19 16:00:41.6200614 UTC: D:\etmbms\vsprojects\profcppbook\ch31.ixx(78): __cdecl ch31::exercises::ex4::log::log<const char(&)[15],unsigned __int64&,const char(&)[3],class ch31::exercises::ex4::UserCommand&>(const char (&)[15],unsigned __int64 &,const char (&)[3],class ch31::exercises::ex4::UserCommand &): retrieved cmd 21: UserCommand
2025-08-19 16:00:41.6207924 UTC: D:\etmbms\vsprojects\profcppbook\ch31.ixx(78): __cdecl ch31::exercises::ex4::log::log<const char(&)[15],unsigned __int64&,const char(&)[3],class ch31::exercises::ex4::UserCommand&>(const char (&)[15],unsigned __int64 &,const char (&)[3],class ch31::exercises::ex4::UserCommand &): retrieved cmd 22: UserCommand
2025-08-19 16:00:41.6212850 UTC: D:\etmbms\vsprojects\profcppbook\ch31.ixx(78): __cdecl ch31::exercises::ex4::log::log<const char(&)[15],unsigned __int64&,const char(&)[3],class ch31::exercises::ex4::UserCommand&>(const char (&)[15],unsigned __int64 &,const char (&)[3],class ch31::exercises::ex4::UserCommand &): retrieved cmd 23: UserCommand
2025-08-19 16:00:41.6217631 UTC: D:\etmbms\vsprojects\profcppbook\ch31.ixx(78): __cdecl ch31::exercises::ex4::log::log<const char(&)[15],unsigned __int64&,const char(&)[3],class ch31::exercises::ex4::UserCommand&>(const char (&)[15],unsigned __int64 &,const char (&)[3],class ch31::exercises::ex4::UserCommand &): retrieved cmd 24: UserCommand
2025-08-19 16:00:41.6222481 UTC: D:\etmbms\vsprojects\profcppbook\ch31.ixx(78): __cdecl ch31::exercises::ex4::log::log<const char(&)[15],unsigned __int64&,const char(&)[3],class ch31::exercises::ex4::UserCommand&>(const char (&)[15],unsigned __int64 &,const char (&)[3],class ch31::exercises::ex4::UserCommand &): retrieved cmd 25: UserCommand
2025-08-19 16:00:41.6227173 UTC: D:\etmbms\vsprojects\profcppbook\ch31.ixx(78): __cdecl ch31::exercises::ex4::log::log<const char(&)[15],unsigned __int64&,const char(&)[3],class ch31::exercises::ex4::UserCommand&>(const char (&)[15],unsigned __int64 &,const char (&)[3],class ch31::exercises::ex4::UserCommand &): retrieved cmd 26: UserCommand
2025-08-19 16:00:41.6231812 UTC: D:\etmbms\vsprojects\profcppbook\ch31.ixx(78): __cdecl ch31::exercises::ex4::log::log<const char(&)[15],unsigned __int64&,const char(&)[3],class ch31::exercises::ex4::UserCommand&>(const char (&)[15],unsigned __int64 &,const char (&)[3],class ch31::exercises::ex4::UserCommand &): retrieved cmd 27: UserCommand
2025-08-19 16:00:41.6236342 UTC: D:\etmbms\vsprojects\profcppbook\ch31.ixx(78): __cdecl ch31::exercises::ex4::log::log<const char(&)[15],unsigned __int64&,const char(&)[3],class ch31::exercises::ex4::UserCommand&>(const char (&)[15],unsigned __int64 &,const char (&)[3],class ch31::exercises::ex4::UserCommand &): retrieved cmd 28: UserCommand
2025-08-19 16:00:41.6240560 UTC: D:\etmbms\vsprojects\profcppbook\ch31.ixx(78): __cdecl ch31::exercises::ex4::log::log<const char(&)[15],unsigned __int64&,const char(&)[3],class ch31::exercises::ex4::UserCommand&>(const char (&)[15],unsigned __int64 &,const char (&)[3],class ch31::exercises::ex4::UserCommand &): retrieved cmd 29: UserCommand
2025-08-19 16:00:41.6245030 UTC: D:\etmbms\vsprojects\profcppbook\ch31.ixx(78): __cdecl ch31::exercises::ex4::log::log<const char(&)[15],unsigned __int64&,const char(&)[3],class ch31::exercises::ex4::UserCommand&>(const char (&)[15],unsigned __int64 &,const char (&)[3],class ch31::exercises::ex4::UserCommand &): retrieved cmd 30: UserCommand
2025-08-19 16:00:41.6249288 UTC: D:\etmbms\vsprojects\profcppbook\ch31.ixx(78): __cdecl ch31::exercises::ex4::log::log<const char(&)[15],unsigned __int64&,const char(&)[3],class ch31::exercises::ex4::UserCommand&>(const char (&)[15],unsigned __int64 &,const char (&)[3],class ch31::exercises::ex4::UserCommand &): retrieved cmd 31: UserCommand
2025-08-19 16:00:41.6253505 UTC: D:\etmbms\vsprojects\profcppbook\ch31.ixx(78): __cdecl ch31::exercises::ex4::log::log<const char(&)[15],unsigned __int64&,const char(&)[3],class ch31::exercises::ex4::UserCommand&>(const char (&)[15],unsigned __int64 &,const char (&)[3],class ch31::exercises::ex4::UserCommand &): retrieved cmd 32: UserCommand
2025-08-19 16:00:41.6258074 UTC: D:\etmbms\vsprojects\profcppbook\ch31.ixx(78): __cdecl ch31::exercises::ex4::log::log<const char(&)[15],unsigned __int64&,const char(&)[3],class ch31::exercises::ex4::UserCommand&>(const char (&)[15],unsigned __int64 &,const char (&)[3],class ch31::exercises::ex4::UserCommand &): retrieved cmd 33: UserCommand
2025-08-19 16:00:41.6262584 UTC: D:\etmbms\vsprojects\profcppbook\ch31.ixx(78): __cdecl ch31::exercises::ex4::log::log<const char(&)[15],unsigned __int64&,const char(&)[3],class ch31::exercises::ex4::UserCommand&>(const char (&)[15],unsigned __int64 &,const char (&)[3],class ch31::exercises::ex4::UserCommand &): retrieved cmd 34: UserCommand
2025-08-19 16:00:41.6267167 UTC: D:\etmbms\vsprojects\profcppbook\ch31.ixx(78): __cdecl ch31::exercises::ex4::log::log<const char(&)[15],unsigned __int64&,const char(&)[3],class ch31::exercises::ex4::UserCommand&>(const char (&)[15],unsigned __int64 &,const char (&)[3],class ch31::exercises::ex4::UserCommand &): retrieved cmd 35: UserCommand
2025-08-19 16:00:41.6272304 UTC: D:\etmbms\vsprojects\profcppbook\ch31.ixx(78): __cdecl ch31::exercises::ex4::log::log<const char(&)[15],unsigned __int64&,const char(&)[3],class ch31::exercises::ex4::UserCommand&>(const char (&)[15],unsigned __int64 &,const char (&)[3],class ch31::exercises::ex4::UserCommand &): retrieved cmd 36: UserCommand
2025-08-19 16:00:41.6276766 UTC: D:\etmbms\vsprojects\profcppbook\ch31.ixx(78): __cdecl ch31::exercises::ex4::log::log<const char(&)[15],unsigned __int64&,const char(&)[3],class ch31::exercises::ex4::UserCommand&>(const char (&)[15],unsigned __int64 &,const char (&)[3],class ch31::exercises::ex4::UserCommand &): retrieved cmd 37: UserCommand
2025-08-19 16:00:41.6281112 UTC: D:\etmbms\vsprojects\profcppbook\ch31.ixx(78): __cdecl ch31::exercises::ex4::log::log<const char(&)[15],unsigned __int64&,const char(&)[3],class ch31::exercises::ex4::UserCommand&>(const char (&)[15],unsigned __int64 &,const char (&)[3],class ch31::exercises::ex4::UserCommand &): retrieved cmd 38: UserCommand
2025-08-19 16:00:41.6285776 UTC: D:\etmbms\vsprojects\profcppbook\ch31.ixx(78): __cdecl ch31::exercises::ex4::log::log<const char(&)[15],unsigned __int64&,const char(&)[3],class ch31::exercises::ex4::UserCommand&>(const char (&)[15],unsigned __int64 &,const char (&)[3],class ch31::exercises::ex4::UserCommand &): retrieved cmd 39: UserCommand
2025-08-19 16:00:41.6290275 UTC: D:\etmbms\vsprojects\profcppbook\ch31.ixx(78): __cdecl ch31::exercises::ex4::log::log<const char(&)[15],unsigned __int64&,const char(&)[3],class ch31::exercises::ex4::UserCommand&>(const char (&)[15],unsigned __int64 &,const char (&)[3],class ch31::exercises::ex4::UserCommand &): retrieved cmd 40: UserCommand
2025-08-19 16:00:41.6294756 UTC: D:\etmbms\vsprojects\profcppbook\ch31.ixx(78): __cdecl ch31::exercises::ex4::log::log<const char(&)[15],unsigned __int64&,const char(&)[3],class ch31::exercises::ex4::UserCommand&>(const char (&)[15],unsigned __int64 &,const char (&)[3],class ch31::exercises::ex4::UserCommand &): retrieved cmd 41: UserCommand
2025-08-19 16:00:41.6299113 UTC: D:\etmbms\vsprojects\profcppbook\ch31.ixx(78): __cdecl ch31::exercises::ex4::log::log<const char(&)[15],unsigned __int64&,const char(&)[3],class ch31::exercises::ex4::UserCommand&>(const char (&)[15],unsigned __int64 &,const char (&)[3],class ch31::exercises::ex4::UserCommand &): retrieved cmd 42: UserCommand
2025-08-19 16:00:41.6303586 UTC: D:\etmbms\vsprojects\profcppbook\ch31.ixx(78): __cdecl ch31::exercises::ex4::log::log<const char(&)[15],unsigned __int64&,const char(&)[3],class ch31::exercises::ex4::UserCommand&>(const char (&)[15],unsigned __int64 &,const char (&)[3],class ch31::exercises::ex4::UserCommand &): retrieved cmd 43: UserCommand
2025-08-19 16:00:41.6309089 UTC: D:\etmbms\vsprojects\profcppbook\ch31.ixx(78): __cdecl ch31::exercises::ex4::log::log<const char(&)[15],unsigned __int64&,const char(&)[3],class ch31::exercises::ex4::UserCommand&>(const char (&)[15],unsigned __int64 &,const char (&)[3],class ch31::exercises::ex4::UserCommand &): retrieved cmd 44: UserCommand
2025-08-19 16:00:41.6316758 UTC: D:\etmbms\vsprojects\profcppbook\ch31.ixx(78): __cdecl ch31::exercises::ex4::log::log<const char(&)[15],unsigned __int64&,const char(&)[3],class ch31::exercises::ex4::UserCommand&>(const char (&)[15],unsigned __int64 &,const char (&)[3],class ch31::exercises::ex4::UserCommand &): retrieved cmd 45: UserCommand
2025-08-19 16:00:41.6322662 UTC: D:\etmbms\vsprojects\profcppbook\ch31.ixx(78): __cdecl ch31::exercises::ex4::log::log<const char(&)[15],unsigned __int64&,const char(&)[3],class ch31::exercises::ex4::UserCommand&>(const char (&)[15],unsigned __int64 &,const char (&)[3],class ch31::exercises::ex4::UserCommand &): retrieved cmd 46: UserCommand
2025-08-19 16:00:41.6327508 UTC: D:\etmbms\vsprojects\profcppbook\ch31.ixx(78): __cdecl ch31::exercises::ex4::log::log<const char(&)[15],unsigned __int64&,const char(&)[3],class ch31::exercises::ex4::UserCommand&>(const char (&)[15],unsigned __int64 &,const char (&)[3],class ch31::exercises::ex4::UserCommand &): retrieved cmd 47: UserCommand
2025-08-19 16:00:41.6332071 UTC: D:\etmbms\vsprojects\profcppbook\ch31.ixx(78): __cdecl ch31::exercises::ex4::log::log<const char(&)[15],unsigned __int64&,const char(&)[3],class ch31::exercises::ex4::UserCommand&>(const char (&)[15],unsigned __int64 &,const char (&)[3],class ch31::exercises::ex4::UserCommand &): retrieved cmd 48: UserCommand
2025-08-19 16:00:41.6337012 UTC: D:\etmbms\vsprojects\profcppbook\ch31.ixx(78): __cdecl ch31::exercises::ex4::log::log<const char(&)[15],unsigned __int64&,const char(&)[3],class ch31::exercises::ex4::UserCommand&>(const char (&)[15],unsigned __int64 &,const char (&)[3],class ch31::exercises::ex4::UserCommand &): retrieved cmd 49: UserCommand
2025-08-19 16:00:41.6342983 UTC: D:\etmbms\vsprojects\profcppbook\ch31.ixx(78): __cdecl ch31::exercises::ex4::log::log<const char(&)[15],unsigned __int64&,const char(&)[3],class ch31::exercises::ex4::UserCommand&>(const char (&)[15],unsigned __int64 &,const char (&)[3],class ch31::exercises::ex4::UserCommand &): retrieved cmd 50: UserCommand
2025-08-19 16:00:41.6352267 UTC: D:\etmbms\vsprojects\profcppbook\ch31.ixx(78): __cdecl ch31::exercises::ex4::log::log<const char(&)[15],unsigned __int64&,const char(&)[3],class ch31::exercises::ex4::UserCommand&>(const char (&)[15],unsigned __int64 &,const char (&)[3],class ch31::exercises::ex4::UserCommand &): retrieved cmd 51: UserCommand
2025-08-19 16:00:41.6357120 UTC: D:\etmbms\vsprojects\profcppbook\ch31.ixx(78): __cdecl ch31::exercises::ex4::log::log<const char(&)[15],unsigned __int64&,const char(&)[3],class ch31::exercises::ex4::UserCommand&>(const char (&)[15],unsigned __int64 &,const char (&)[3],class ch31::exercises::ex4::UserCommand &): retrieved cmd 52: UserCommand
2025-08-19 16:00:41.6361811 UTC: D:\etmbms\vsprojects\profcppbook\ch31.ixx(78): __cdecl ch31::exercises::ex4::log::log<const char(&)[15],unsigned __int64&,const char(&)[3],class ch31::exercises::ex4::UserCommand&>(const char (&)[15],unsigned __int64 &,const char (&)[3],class ch31::exercises::ex4::UserCommand &): retrieved cmd 53: UserCommand
2025-08-19 16:00:41.6366303 UTC: D:\etmbms\vsprojects\profcppbook\ch31.ixx(78): __cdecl ch31::exercises::ex4::log::log<const char(&)[15],unsigned __int64&,const char(&)[3],class ch31::exercises::ex4::UserCommand&>(const char (&)[15],unsigned __int64 &,const char (&)[3],class ch31::exercises::ex4::UserCommand &): retrieved cmd 54: UserCommand
2025-08-19 16:00:41.6370836 UTC: D:\etmbms\vsprojects\profcppbook\ch31.ixx(78): __cdecl ch31::exercises::ex4::log::log<const char(&)[15],unsigned __int64&,const char(&)[3],class ch31::exercises::ex4::UserCommand&>(const char (&)[15],unsigned __int64 &,const char (&)[3],class ch31::exercises::ex4::UserCommand &): retrieved cmd 55: UserCommand
2025-08-19 16:00:41.6375359 UTC: D:\etmbms\vsprojects\profcppbook\ch31.ixx(78): __cdecl ch31::exercises::ex4::log::log<const char(&)[15],unsigned __int64&,const char(&)[3],class ch31::exercises::ex4::UserCommand&>(const char (&)[15],unsigned __int64 &,const char (&)[3],class ch31::exercises::ex4::UserCommand &): retrieved cmd 56: UserCommand
2025-08-19 16:00:41.6379730 UTC: D:\etmbms\vsprojects\profcppbook\ch31.ixx(78): __cdecl ch31::exercises::ex4::log::log<const char(&)[15],unsigned __int64&,const char(&)[3],class ch31::exercises::ex4::UserCommand&>(const char (&)[15],unsigned __int64 &,const char (&)[3],class ch31::exercises::ex4::UserCommand &): retrieved cmd 57: UserCommand
2025-08-19 16:00:41.6384565 UTC: D:\etmbms\vsprojects\profcppbook\ch31.ixx(78): __cdecl ch31::exercises::ex4::log::log<const char(&)[15],unsigned __int64&,const char(&)[3],class ch31::exercises::ex4::UserCommand&>(const char (&)[15],unsigned __int64 &,const char (&)[3],class ch31::exercises::ex4::UserCommand &): retrieved cmd 58: UserCommand
2025-08-19 16:00:41.6389109 UTC: D:\etmbms\vsprojects\profcppbook\ch31.ixx(78): __cdecl ch31::exercises::ex4::log::log<const char(&)[15],unsigned __int64&,const char(&)[3],class ch31::exercises::ex4::UserCommand&>(const char (&)[15],unsigned __int64 &,const char (&)[3],class ch31::exercises::ex4::UserCommand &): retrieved cmd 59: UserCommand
2025-08-19 16:00:41.6393868 UTC: D:\etmbms\vsprojects\profcppbook\ch31.ixx(78): __cdecl ch31::exercises::ex4::log::log<const char(&)[15],unsigned __int64&,const char(&)[3],class ch31::exercises::ex4::UserCommand&>(const char (&)[15],unsigned __int64 &,const char (&)[3],class ch31::exercises::ex4::UserCommand &): retrieved cmd 60: UserCommand
2025-08-19 16:00:41.6398530 UTC: D:\etmbms\vsprojects\profcppbook\ch31.ixx(78): __cdecl ch31::exercises::ex4::log::log<const char(&)[15],unsigned __int64&,const char(&)[3],class ch31::exercises::ex4::UserCommand&>(const char (&)[15],unsigned __int64 &,const char (&)[3],class ch31::exercises::ex4::UserCommand &): retrieved cmd 61: UserCommand
2025-08-19 16:00:41.6403207 UTC: D:\etmbms\vsprojects\profcppbook\ch31.ixx(78): __cdecl ch31::exercises::ex4::log::log<const char(&)[15],unsigned __int64&,const char(&)[3],class ch31::exercises::ex4::UserCommand&>(const char (&)[15],unsigned __int64 &,const char (&)[3],class ch31::exercises::ex4::UserCommand &): retrieved cmd 62: UserCommand
2025-08-19 16:00:41.6408246 UTC: D:\etmbms\vsprojects\profcppbook\ch31.ixx(78): __cdecl ch31::exercises::ex4::log::log<const char(&)[15],unsigned __int64&,const char(&)[3],class ch31::exercises::ex4::UserCommand&>(const char (&)[15],unsigned __int64 &,const char (&)[3],class ch31::exercises::ex4::UserCommand &): retrieved cmd 63: UserCommand
2025-08-19 16:00:41.6413662 UTC: D:\etmbms\vsprojects\profcppbook\ch31.ixx(78): __cdecl ch31::exercises::ex4::log::log<const char(&)[15],unsigned __int64&,const char(&)[3],class ch31::exercises::ex4::UserCommand&>(const char (&)[15],unsigned __int64 &,const char (&)[3],class ch31::exercises::ex4::UserCommand &): retrieved cmd 64: UserCommand
2025-08-19 16:00:41.6418863 UTC: D:\etmbms\vsprojects\profcppbook\ch31.ixx(78): __cdecl ch31::exercises::ex4::log::log<const char(&)[15],unsigned __int64&,const char(&)[3],class ch31::exercises::ex4::UserCommand&>(const char (&)[15],unsigned __int64 &,const char (&)[3],class ch31::exercises::ex4::UserCommand &): retrieved cmd 65: UserCommand
2025-08-19 16:00:41.6424196 UTC: D:\etmbms\vsprojects\profcppbook\ch31.ixx(78): __cdecl ch31::exercises::ex4::log::log<const char(&)[15],unsigned __int64&,const char(&)[3],class ch31::exercises::ex4::UserCommand&>(const char (&)[15],unsigned __int64 &,const char (&)[3],class ch31::exercises::ex4::UserCommand &): retrieved cmd 66: UserCommand
2025-08-19 16:00:41.6429666 UTC: D:\etmbms\vsprojects\profcppbook\ch31.ixx(78): __cdecl ch31::exercises::ex4::log::log<const char(&)[15],unsigned __int64&,const char(&)[3],class ch31::exercises::ex4::UserCommand&>(const char (&)[15],unsigned __int64 &,const char (&)[3],class ch31::exercises::ex4::UserCommand &): retrieved cmd 67: UserCommand
2025-08-19 16:00:41.6435299 UTC: D:\etmbms\vsprojects\profcppbook\ch31.ixx(78): __cdecl ch31::exercises::ex4::log::log<const char(&)[15],unsigned __int64&,const char(&)[3],class ch31::exercises::ex4::UserCommand&>(const char (&)[15],unsigned __int64 &,const char (&)[3],class ch31::exercises::ex4::UserCommand &): retrieved cmd 68: UserCommand
2025-08-19 16:00:41.6440296 UTC: D:\etmbms\vsprojects\profcppbook\ch31.ixx(78): __cdecl ch31::exercises::ex4::log::log<const char(&)[15],unsigned __int64&,const char(&)[3],class ch31::exercises::ex4::UserCommand&>(const char (&)[15],unsigned __int64 &,const char (&)[3],class ch31::exercises::ex4::UserCommand &): retrieved cmd 69: UserCommand
2025-08-19 16:00:41.6446253 UTC: D:\etmbms\vsprojects\profcppbook\ch31.ixx(78): __cdecl ch31::exercises::ex4::log::log<const char(&)[15],unsigned __int64&,const char(&)[3],class ch31::exercises::ex4::UserCommand&>(const char (&)[15],unsigned __int64 &,const char (&)[3],class ch31::exercises::ex4::UserCommand &): retrieved cmd 70: UserCommand
2025-08-19 16:00:41.6452076 UTC: D:\etmbms\vsprojects\profcppbook\ch31.ixx(78): __cdecl ch31::exercises::ex4::log::log<const char(&)[15],unsigned __int64&,const char(&)[3],class ch31::exercises::ex4::UserCommand&>(const char (&)[15],unsigned __int64 &,const char (&)[3],class ch31::exercises::ex4::UserCommand &): retrieved cmd 71: UserCommand
2025-08-19 16:00:41.6457463 UTC: D:\etmbms\vsprojects\profcppbook\ch31.ixx(78): __cdecl ch31::exercises::ex4::log::log<const char(&)[15],unsigned __int64&,const char(&)[3],class ch31::exercises::ex4::UserCommand&>(const char (&)[15],unsigned __int64 &,const char (&)[3],class ch31::exercises::ex4::UserCommand &): retrieved cmd 72: UserCommand
2025-08-19 16:00:41.6462434 UTC: D:\etmbms\vsprojects\profcppbook\ch31.ixx(78): __cdecl ch31::exercises::ex4::log::log<const char(&)[15],unsigned __int64&,const char(&)[3],class ch31::exercises::ex4::UserCommand&>(const char (&)[15],unsigned __int64 &,const char (&)[3],class ch31::exercises::ex4::UserCommand &): retrieved cmd 73: UserCommand
2025-08-19 16:00:41.6467106 UTC: D:\etmbms\vsprojects\profcppbook\ch31.ixx(78): __cdecl ch31::exercises::ex4::log::log<const char(&)[15],unsigned __int64&,const char(&)[3],class ch31::exercises::ex4::UserCommand&>(const char (&)[15],unsigned __int64 &,const char (&)[3],class ch31::exercises::ex4::UserCommand &): retrieved cmd 74: UserCommand
2025-08-19 16:00:41.6471791 UTC: D:\etmbms\vsprojects\profcppbook\ch31.ixx(78): __cdecl ch31::exercises::ex4::log::log<const char(&)[15],unsigned __int64&,const char(&)[3],class ch31::exercises::ex4::UserCommand&>(const char (&)[15],unsigned __int64 &,const char (&)[3],class ch31::exercises::ex4::UserCommand &): retrieved cmd 75: UserCommand
2025-08-19 16:00:41.6476527 UTC: D:\etmbms\vsprojects\profcppbook\ch31.ixx(78): __cdecl ch31::exercises::ex4::log::log<const char(&)[15],unsigned __int64&,const char(&)[3],class ch31::exercises::ex4::UserCommand&>(const char (&)[15],unsigned __int64 &,const char (&)[3],class ch31::exercises::ex4::UserCommand &): retrieved cmd 76: UserCommand
2025-08-19 16:00:41.6481194 UTC: D:\etmbms\vsprojects\profcppbook\ch31.ixx(78): __cdecl ch31::exercises::ex4::log::log<const char(&)[15],unsigned __int64&,const char(&)[3],class ch31::exercises::ex4::UserCommand&>(const char (&)[15],unsigned __int64 &,const char (&)[3],class ch31::exercises::ex4::UserCommand &): retrieved cmd 77: UserCommand
2025-08-19 16:00:41.6486002 UTC: D:\etmbms\vsprojects\profcppbook\ch31.ixx(78): __cdecl ch31::exercises::ex4::log::log<const char(&)[15],unsigned __int64&,const char(&)[3],class ch31::exercises::ex4::UserCommand&>(const char (&)[15],unsigned __int64 &,const char (&)[3],class ch31::exercises::ex4::UserCommand &): retrieved cmd 78: UserCommand
2025-08-19 16:00:41.6491029 UTC: D:\etmbms\vsprojects\profcppbook\ch31.ixx(78): __cdecl ch31::exercises::ex4::log::log<const char(&)[15],unsigned __int64&,const char(&)[3],class ch31::exercises::ex4::UserCommand&>(const char (&)[15],unsigned __int64 &,const char (&)[3],class ch31::exercises::ex4::UserCommand &): retrieved cmd 79: UserCommand
2025-08-19 16:00:41.6497075 UTC: D:\etmbms\vsprojects\profcppbook\ch31.ixx(78): __cdecl ch31::exercises::ex4::log::log<const char(&)[15],unsigned __int64&,const char(&)[3],class ch31::exercises::ex4::UserCommand&>(const char (&)[15],unsigned __int64 &,const char (&)[3],class ch31::exercises::ex4::UserCommand &): retrieved cmd 80: UserCommand
2025-08-19 16:00:41.6502775 UTC: D:\etmbms\vsprojects\profcppbook\ch31.ixx(78): __cdecl ch31::exercises::ex4::log::log<const char(&)[15],unsigned __int64&,const char(&)[3],class ch31::exercises::ex4::UserCommand&>(const char (&)[15],unsigned __int64 &,const char (&)[3],class ch31::exercises::ex4::UserCommand &): retrieved cmd 81: UserCommand
2025-08-19 16:00:41.6507657 UTC: D:\etmbms\vsprojects\profcppbook\ch31.ixx(78): __cdecl ch31::exercises::ex4::log::log<const char(&)[15],unsigned __int64&,const char(&)[3],class ch31::exercises::ex4::UserCommand&>(const char (&)[15],unsigned __int64 &,const char (&)[3],class ch31::exercises::ex4::UserCommand &): retrieved cmd 82: UserCommand
2025-08-19 16:00:41.6512438 UTC: D:\etmbms\vsprojects\profcppbook\ch31.ixx(78): __cdecl ch31::exercises::ex4::log::log<const char(&)[15],unsigned __int64&,const char(&)[3],class ch31::exercises::ex4::UserCommand&>(const char (&)[15],unsigned __int64 &,const char (&)[3],class ch31::exercises::ex4::UserCommand &): retrieved cmd 83: UserCommand
2025-08-19 16:00:41.6517585 UTC: D:\etmbms\vsprojects\profcppbook\ch31.ixx(78): __cdecl ch31::exercises::ex4::log::log<const char(&)[15],unsigned __int64&,const char(&)[3],class ch31::exercises::ex4::UserCommand&>(const char (&)[15],unsigned __int64 &,const char (&)[3],class ch31::exercises::ex4::UserCommand &): retrieved cmd 84: UserCommand
2025-08-19 16:00:41.6522483 UTC: D:\etmbms\vsprojects\profcppbook\ch31.ixx(78): __cdecl ch31::exercises::ex4::log::log<const char(&)[15],unsigned __int64&,const char(&)[3],class ch31::exercises::ex4::UserCommand&>(const char (&)[15],unsigned __int64 &,const char (&)[3],class ch31::exercises::ex4::UserCommand &): retrieved cmd 85: UserCommand
2025-08-19 16:00:41.6527556 UTC: D:\etmbms\vsprojects\profcppbook\ch31.ixx(78): __cdecl ch31::exercises::ex4::log::log<const char(&)[15],unsigned __int64&,const char(&)[3],class ch31::exercises::ex4::UserCommand&>(const char (&)[15],unsigned __int64 &,const char (&)[3],class ch31::exercises::ex4::UserCommand &): retrieved cmd 86: UserCommand
2025-08-19 16:00:41.6532642 UTC: D:\etmbms\vsprojects\profcppbook\ch31.ixx(78): __cdecl ch31::exercises::ex4::log::log<const char(&)[15],unsigned __int64&,const char(&)[3],class ch31::exercises::ex4::UserCommand&>(const char (&)[15],unsigned __int64 &,const char (&)[3],class ch31::exercises::ex4::UserCommand &): retrieved cmd 87: UserCommand
2025-08-19 16:00:41.6537288 UTC: D:\etmbms\vsprojects\profcppbook\ch31.ixx(78): __cdecl ch31::exercises::ex4::log::log<const char(&)[15],unsigned __int64&,const char(&)[3],class ch31::exercises::ex4::UserCommand&>(const char (&)[15],unsigned __int64 &,const char (&)[3],class ch31::exercises::ex4::UserCommand &): retrieved cmd 88: UserCommand
2025-08-19 16:00:41.6541821 UTC: D:\etmbms\vsprojects\profcppbook\ch31.ixx(78): __cdecl ch31::exercises::ex4::log::log<const char(&)[15],unsigned __int64&,const char(&)[3],class ch31::exercises::ex4::UserCommand&>(const char (&)[15],unsigned __int64 &,const char (&)[3],class ch31::exercises::ex4::UserCommand &): retrieved cmd 89: UserCommand
2025-08-19 16:00:41.6546784 UTC: D:\etmbms\vsprojects\profcppbook\ch31.ixx(78): __cdecl ch31::exercises::ex4::log::log<const char(&)[15],unsigned __int64&,const char(&)[3],class ch31::exercises::ex4::UserCommand&>(const char (&)[15],unsigned __int64 &,const char (&)[3],class ch31::exercises::ex4::UserCommand &): retrieved cmd 90: UserCommand
2025-08-19 16:00:41.6551567 UTC: D:\etmbms\vsprojects\profcppbook\ch31.ixx(78): __cdecl ch31::exercises::ex4::log::log<const char(&)[15],unsigned __int64&,const char(&)[3],class ch31::exercises::ex4::UserCommand&>(const char (&)[15],unsigned __int64 &,const char (&)[3],class ch31::exercises::ex4::UserCommand &): retrieved cmd 91: UserCommand
2025-08-19 16:00:41.6556382 UTC: D:\etmbms\vsprojects\profcppbook\ch31.ixx(78): __cdecl ch31::exercises::ex4::log::log<const char(&)[15],unsigned __int64&,const char(&)[3],class ch31::exercises::ex4::UserCommand&>(const char (&)[15],unsigned __int64 &,const char (&)[3],class ch31::exercises::ex4::UserCommand &): retrieved cmd 92: UserCommand
2025-08-19 16:00:41.6561990 UTC: D:\etmbms\vsprojects\profcppbook\ch31.ixx(78): __cdecl ch31::exercises::ex4::log::log<const char(&)[15],unsigned __int64&,const char(&)[3],class ch31::exercises::ex4::UserCommand&>(const char (&)[15],unsigned __int64 &,const char (&)[3],class ch31::exercises::ex4::UserCommand &): retrieved cmd 93: UserCommand
2025-08-19 16:00:41.6567245 UTC: D:\etmbms\vsprojects\profcppbook\ch31.ixx(78): __cdecl ch31::exercises::ex4::log::log<const char(&)[15],unsigned __int64&,const char(&)[3],class ch31::exercises::ex4::UserCommand&>(const char (&)[15],unsigned __int64 &,const char (&)[3],class ch31::exercises::ex4::UserCommand &): retrieved cmd 94: UserCommand
2025-08-19 16:00:41.6572449 UTC: D:\etmbms\vsprojects\profcppbook\ch31.ixx(78): __cdecl ch31::exercises::ex4::log::log<const char(&)[15],unsigned __int64&,const char(&)[3],class ch31::exercises::ex4::UserCommand&>(const char (&)[15],unsigned __int64 &,const char (&)[3],class ch31::exercises::ex4::UserCommand &): retrieved cmd 95: UserCommand
2025-08-19 16:00:41.6577074 UTC: D:\etmbms\vsprojects\profcppbook\ch31.ixx(78): __cdecl ch31::exercises::ex4::log::log<const char(&)[15],unsigned __int64&,const char(&)[3],class ch31::exercises::ex4::UserCommand&>(const char (&)[15],unsigned __int64 &,const char (&)[3],class ch31::exercises::ex4::UserCommand &): retrieved cmd 96: UserCommand
2025-08-19 16:00:41.6581669 UTC: D:\etmbms\vsprojects\profcppbook\ch31.ixx(78): __cdecl ch31::exercises::ex4::log::log<const char(&)[15],unsigned __int64&,const char(&)[3],class ch31::exercises::ex4::UserCommand&>(const char (&)[15],unsigned __int64 &,const char (&)[3],class ch31::exercises::ex4::UserCommand &): retrieved cmd 97: UserCommand
2025-08-19 16:00:41.6586253 UTC: D:\etmbms\vsprojects\profcppbook\ch31.ixx(78): __cdecl ch31::exercises::ex4::log::log<const char(&)[15],unsigned __int64&,const char(&)[3],class ch31::exercises::ex4::UserCommand&>(const char (&)[15],unsigned __int64 &,const char (&)[3],class ch31::exercises::ex4::UserCommand &): retrieved cmd 98: UserCommand
2025-08-19 16:00:41.6590782 UTC: D:\etmbms\vsprojects\profcppbook\ch31.ixx(78): __cdecl ch31::exercises::ex4::log::log<const char(&)[15],unsigned __int64&,const char(&)[3],class ch31::exercises::ex4::UserCommand&>(const char (&)[15],unsigned __int64 &,const char (&)[3],class ch31::exercises::ex4::UserCommand &): retrieved cmd 99: UserCommand
2025-08-19 16:06:43.9791007 UTC: D:\etmbms\vsprojects\profcppbook\ch31.ixx(78): __cdecl ch31::exercises::ex4::log::log<const char(&)[11],char*&>(const char (&)[11],char *&): Argument: D:\etmbms\vsprojects\profcppbook\x64\Debug\profcppbook.exe
2025-08-19 16:06:43.9819908 UTC: D:\etmbms\vsprojects\profcppbook\ch31.ixx(78): __cdecl ch31::exercises::ex4::log::log<const char(&)[11],char*&>(const char (&)[11],char *&): Argument: -d
2025-08-19 16:06:43.9825498 UTC: D:\etmbms\vsprojects\profcppbook\ch31.ixx(78): __cdecl ch31::exercises::ex4::log::log<const char(&)[17],class ch31::exercises::ex4::ComplicatedClass&>(const char (&)[17],class ch31::exercises::ex4::ComplicatedClass &): given argument: ComplicatedClass
2025-08-19 16:06:43.9832598 UTC: D:\etmbms\vsprojects\profcppbook\ch31.ixx(78): __cdecl ch31::exercises::ex4::log::log<const char(&)[15],unsigned __int64&,const char(&)[3],class ch31::exercises::ex4::UserCommand&>(const char (&)[15],unsigned __int64 &,const char (&)[3],class ch31::exercises::ex4::UserCommand &): retrieved cmd 0: UserCommand
2025-08-19 16:06:43.9843548 UTC: D:\etmbms\vsprojects\profcppbook\ch31.ixx(78): __cdecl ch31::exercises::ex4::log::log<const char(&)[15],unsigned __int64&,const char(&)[3],class ch31::exercises::ex4::UserCommand&>(const char (&)[15],unsigned __int64 &,const char (&)[3],class ch31::exercises::ex4::UserCommand &): retrieved cmd 1: UserCommand
2025-08-19 16:06:43.9849855 UTC: D:\etmbms\vsprojects\profcppbook\ch31.ixx(78): __cdecl ch31::exercises::ex4::log::log<const char(&)[15],unsigned __int64&,const char(&)[3],class ch31::exercises::ex4::UserCommand&>(const char (&)[15],unsigned __int64 &,const char (&)[3],class ch31::exercises::ex4::UserCommand &): retrieved cmd 2: UserCommand
2025-08-19 16:06:43.9856377 UTC: D:\etmbms\vsprojects\profcppbook\ch31.ixx(78): __cdecl ch31::exercises::ex4::log::log<const char(&)[15],unsigned __int64&,const char(&)[3],class ch31::exercises::ex4::UserCommand&>(const char (&)[15],unsigned __int64 &,const char (&)[3],class ch31::exercises::ex4::UserCommand &): retrieved cmd 3: UserCommand
2025-08-19 16:06:43.9862297 UTC: D:\etmbms\vsprojects\profcppbook\ch31.ixx(78): __cdecl ch31::exercises::ex4::log::log<const char(&)[15],unsigned __int64&,const char(&)[3],class ch31::exercises::ex4::UserCommand&>(const char (&)[15],unsigned __int64 &,const char (&)[3],class ch31::exercises::ex4::UserCommand &): retrieved cmd 4: UserCommand
2025-08-19 16:06:43.9867880 UTC: D:\etmbms\vsprojects\profcppbook\ch31.ixx(78): __cdecl ch31::exercises::ex4::log::log<const char(&)[15],unsigned __int64&,const char(&)[3],class ch31::exercises::ex4::UserCommand&>(const char (&)[15],unsigned __int64 &,const char (&)[3],class ch31::exercises::ex4::UserCommand &): retrieved cmd 5: UserCommand
2025-08-19 16:06:43.9873299 UTC: D:\etmbms\vsprojects\profcppbook\ch31.ixx(78): __cdecl ch31::exercises::ex4::log::log<const char(&)[15],unsigned __int64&,const char(&)[3],class ch31::exercises::ex4::UserCommand&>(const char (&)[15],unsigned __int64 &,const char (&)[3],class ch31::exercises::ex4::UserCommand &): retrieved cmd 6: UserCommand
2025-08-19 16:06:43.9878389 UTC: D:\etmbms\vsprojects\profcppbook\ch31.ixx(78): __cdecl ch31::exercises::ex4::log::log<const char(&)[15],unsigned __int64&,const char(&)[3],class ch31::exercises::ex4::UserCommand&>(const char (&)[15],unsigned __int64 &,const char (&)[3],class ch31::exercises::ex4::UserCommand &): retrieved cmd 7: UserCommand
2025-08-19 16:06:43.9883508 UTC: D:\etmbms\vsprojects\profcppbook\ch31.ixx(78): __cdecl ch31::exercises::ex4::log::log<const char(&)[15],unsigned __int64&,const char(&)[3],class ch31::exercises::ex4::UserCommand&>(const char (&)[15],unsigned __int64 &,const char (&)[3],class ch31::exercises::ex4::UserCommand &): retrieved cmd 8: UserCommand
2025-08-19 16:06:43.9888403 UTC: D:\etmbms\vsprojects\profcppbook\ch31.ixx(78): __cdecl ch31::exercises::ex4::log::log<const char(&)[15],unsigned __int64&,const char(&)[3],class ch31::exercises::ex4::UserCommand&>(const char (&)[15],unsigned __int64 &,const char (&)[3],class ch31::exercises::ex4::UserCommand &): retrieved cmd 9: UserCommand
2025-08-19 16:06:43.9893492 UTC: D:\etmbms\vsprojects\profcppbook\ch31.ixx(78): __cdecl ch31::exercises::ex4::log::log<const char(&)[15],unsigned __int64&,const char(&)[3],class ch31::exercises::ex4::UserCommand&>(const char (&)[15],unsigned __int64 &,const char (&)[3],class ch31::exercises::ex4::UserCommand &): retrieved cmd 10: UserCommand
2025-08-19 16:06:43.9898970 UTC: D:\etmbms\vsprojects\profcppbook\ch31.ixx(78): __cdecl ch31::exercises::ex4::log::log<const char(&)[15],unsigned __int64&,const char(&)[3],class ch31::exercises::ex4::UserCommand&>(const char (&)[15],unsigned __int64 &,const char (&)[3],class ch31::exercises::ex4::UserCommand &): retrieved cmd 11: UserCommand
2025-08-19 16:06:43.9904557 UTC: D:\etmbms\vsprojects\profcppbook\ch31.ixx(78): __cdecl ch31::exercises::ex4::log::log<const char(&)[15],unsigned __int64&,const char(&)[3],class ch31::exercises::ex4::UserCommand&>(const char (&)[15],unsigned __int64 &,const char (&)[3],class ch31::exercises::ex4::UserCommand &): retrieved cmd 12: UserCommand
2025-08-19 16:06:43.9910079 UTC: D:\etmbms\vsprojects\profcppbook\ch31.ixx(78): __cdecl ch31::exercises::ex4::log::log<const char(&)[15],unsigned __int64&,const char(&)[3],class ch31::exercises::ex4::UserCommand&>(const char (&)[15],unsigned __int64 &,const char (&)[3],class ch31::exercises::ex4::UserCommand &): retrieved cmd 13: UserCommand
2025-08-19 16:06:43.9915889 UTC: D:\etmbms\vsprojects\profcppbook\ch31.ixx(78): __cdecl ch31::exercises::ex4::log::log<const char(&)[15],unsigned __int64&,const char(&)[3],class ch31::exercises::ex4::UserCommand&>(const char (&)[15],unsigned __int64 &,const char (&)[3],class ch31::exercises::ex4::UserCommand &): retrieved cmd 14: UserCommand
2025-08-19 16:06:43.9921494 UTC: D:\etmbms\vsprojects\profcppbook\ch31.ixx(78): __cdecl ch31::exercises::ex4::log::log<const char(&)[15],unsigned __int64&,const char(&)[3],class ch31::exercises::ex4::UserCommand&>(const char (&)[15],unsigned __int64 &,const char (&)[3],class ch31::exercises::ex4::UserCommand &): retrieved cmd 15: UserCommand
2025-08-19 16:06:43.9926847 UTC: D:\etmbms\vsprojects\profcppbook\ch31.ixx(78): __cdecl ch31::exercises::ex4::log::log<const char(&)[15],unsigned __int64&,const char(&)[3],class ch31::exercises::ex4::UserCommand&>(const char (&)[15],unsigned __int64 &,const char (&)[3],class ch31::exercises::ex4::UserCommand &): retrieved cmd 16: UserCommand
2025-08-19 16:06:43.9932399 UTC: D:\etmbms\vsprojects\profcppbook\ch31.ixx(78): __cdecl ch31::exercises::ex4::log::log<const char(&)[15],unsigned __int64&,const char(&)[3],class ch31::exercises::ex4::UserCommand&>(const char (&)[15],unsigned __int64 &,const char (&)[3],class ch31::exercises::ex4::UserCommand &): retrieved cmd 17: UserCommand
2025-08-19 16:06:43.9937993 UTC: D:\etmbms\vsprojects\profcppbook\ch31.ixx(78): __cdecl ch31::exercises::ex4::log::log<const char(&)[15],unsigned __int64&,const char(&)[3],class ch31::exercises::ex4::UserCommand&>(const char (&)[15],unsigned __int64 &,const char (&)[3],class ch31::exercises::ex4::UserCommand &): retrieved cmd 18: UserCommand
2025-08-19 16:06:43.9943326 UTC: D:\etmbms\vsprojects\profcppbook\ch31.ixx(78): __cdecl ch31::exercises::ex4::log::log<const char(&)[15],unsigned __int64&,const char(&)[3],class ch31::exercises::ex4::UserCommand&>(const char (&)[15],unsigned __int64 &,const char (&)[3],class ch31::exercises::ex4::UserCommand &): retrieved cmd 19: UserCommand
2025-08-19 16:06:43.9949184 UTC: D:\etmbms\vsprojects\profcppbook\ch31.ixx(78): __cdecl ch31::exercises::ex4::log::log<const char(&)[15],unsigned __int64&,const char(&)[3],class ch31::exercises::ex4::UserCommand&>(const char (&)[15],unsigned __int64 &,const char (&)[3],class ch31::exercises::ex4::UserCommand &): retrieved cmd 20: UserCommand
2025-08-19 16:06:43.9957045 UTC: D:\etmbms\vsprojects\profcppbook\ch31.ixx(78): __cdecl ch31::exercises::ex4::log::log<const char(&)[15],unsigned __int64&,const char(&)[3],class ch31::exercises::ex4::UserCommand&>(const char (&)[15],unsigned __int64 &,const char (&)[3],class ch31::exercises::ex4::UserCommand &): retrieved cmd 21: UserCommand
2025-08-19 16:06:43.9962651 UTC: D:\etmbms\vsprojects\profcppbook\ch31.ixx(78): __cdecl ch31::exercises::ex4::log::log<const char(&)[15],unsigned __int64&,const char(&)[3],class ch31::exercises::ex4::UserCommand&>(const char (&)[15],unsigned __int64 &,const char (&)[3],class ch31::exercises::ex4::UserCommand &): retrieved cmd 22: UserCommand
2025-08-19 16:06:43.9968750 UTC: D:\etmbms\vsprojects\profcppbook\ch31.ixx(78): __cdecl ch31::exercises::ex4::log::log<const char(&)[15],unsigned __int64&,const char(&)[3],class ch31::exercises::ex4::UserCommand&>(const char (&)[15],unsigned __int64 &,const char (&)[3],class ch31::exercises::ex4::UserCommand &): retrieved cmd 23: UserCommand
2025-08-19 16:06:43.9974582 UTC: D:\etmbms\vsprojects\profcppbook\ch31.ixx(78): __cdecl ch31::exercises::ex4::log::log<const char(&)[15],unsigned __int64&,const char(&)[3],class ch31::exercises::ex4::UserCommand&>(const char (&)[15],unsigned __int64 &,const char (&)[3],class ch31::exercises::ex4::UserCommand &): retrieved cmd 24: UserCommand
2025-08-19 16:06:43.9979926 UTC: D:\etmbms\vsprojects\profcppbook\ch31.ixx(78): __cdecl ch31::exercises::ex4::log::log<const char(&)[15],unsigned __int64&,const char(&)[3],class ch31::exercises::ex4::UserCommand&>(const char (&)[15],unsigned __int64 &,const char (&)[3],class ch31::exercises::ex4::UserCommand &): retrieved cmd 25: UserCommand
2025-08-19 16:06:43.9985171 UTC: D:\etmbms\vsprojects\profcppbook\ch31.ixx(78): __cdecl ch31::exercises::ex4::log::log<const char(&)[15],unsigned __int64&,const char(&)[3],class ch31::exercises::ex4::UserCommand&>(const char (&)[15],unsigned __int64 &,const char (&)[3],class ch31::exercises::ex4::UserCommand &): retrieved cmd 26: UserCommand
2025-08-19 16:06:43.9991434 UTC: D:\etmbms\vsprojects\profcppbook\ch31.ixx(78): __cdecl ch31::exercises::ex4::log::log<const char(&)[15],unsigned __int64&,const char(&)[3],class ch31::exercises::ex4::UserCommand&>(const char (&)[15],unsigned __int64 &,const char (&)[3],class ch31::exercises::ex4::UserCommand &): retrieved cmd 27: UserCommand
2025-08-19 16:06:43.9999769 UTC: D:\etmbms\vsprojects\profcppbook\ch31.ixx(78): __cdecl ch31::exercises::ex4::log::log<const char(&)[15],unsigned __int64&,const char(&)[3],class ch31::exercises::ex4::UserCommand&>(const char (&)[15],unsigned __int64 &,const char (&)[3],class ch31::exercises::ex4::UserCommand &): retrieved cmd 28: UserCommand
2025-08-19 16:06:44.0006444 UTC: D:\etmbms\vsprojects\profcppbook\ch31.ixx(78): __cdecl ch31::exercises::ex4::log::log<const char(&)[15],unsigned __int64&,const char(&)[3],class ch31::exercises::ex4::UserCommand&>(const char (&)[15],unsigned __int64 &,const char (&)[3],class ch31::exercises::ex4::UserCommand &): retrieved cmd 29: UserCommand
2025-08-19 16:06:44.0014019 UTC: D:\etmbms\vsprojects\profcppbook\ch31.ixx(78): __cdecl ch31::exercises::ex4::log::log<const char(&)[15],unsigned __int64&,const char(&)[3],class ch31::exercises::ex4::UserCommand&>(const char (&)[15],unsigned __int64 &,const char (&)[3],class ch31::exercises::ex4::UserCommand &): retrieved cmd 30: UserCommand
2025-08-19 16:06:44.0019950 UTC: D:\etmbms\vsprojects\profcppbook\ch31.ixx(78): __cdecl ch31::exercises::ex4::log::log<const char(&)[15],unsigned __int64&,const char(&)[3],class ch31::exercises::ex4::UserCommand&>(const char (&)[15],unsigned __int64 &,const char (&)[3],class ch31::exercises::ex4::UserCommand &): retrieved cmd 31: UserCommand
2025-08-19 16:06:44.0026591 UTC: D:\etmbms\vsprojects\profcppbook\ch31.ixx(78): __cdecl ch31::exercises::ex4::log::log<const char(&)[15],unsigned __int64&,const char(&)[3],class ch31::exercises::ex4::UserCommand&>(const char (&)[15],unsigned __int64 &,const char (&)[3],class ch31::exercises::ex4::UserCommand &): retrieved cmd 32: UserCommand
2025-08-19 16:06:44.0035581 UTC: D:\etmbms\vsprojects\profcppbook\ch31.ixx(78): __cdecl ch31::exercises::ex4::log::log<const char(&)[15],unsigned __int64&,const char(&)[3],class ch31::exercises::ex4::UserCommand&>(const char (&)[15],unsigned __int64 &,const char (&)[3],class ch31::exercises::ex4::UserCommand &): retrieved cmd 33: UserCommand
2025-08-19 16:06:44.0040811 UTC: D:\etmbms\vsprojects\profcppbook\ch31.ixx(78): __cdecl ch31::exercises::ex4::log::log<const char(&)[15],unsigned __int64&,const char(&)[3],class ch31::exercises::ex4::UserCommand&>(const char (&)[15],unsigned __int64 &,const char (&)[3],class ch31::exercises::ex4::UserCommand &): retrieved cmd 34: UserCommand
2025-08-19 16:06:44.0046320 UTC: D:\etmbms\vsprojects\profcppbook\ch31.ixx(78): __cdecl ch31::exercises::ex4::log::log<const char(&)[15],unsigned __int64&,const char(&)[3],class ch31::exercises::ex4::UserCommand&>(const char (&)[15],unsigned __int64 &,const char (&)[3],class ch31::exercises::ex4::UserCommand &): retrieved cmd 35: UserCommand
2025-08-19 16:06:44.0052387 UTC: D:\etmbms\vsprojects\profcppbook\ch31.ixx(78): __cdecl ch31::exercises::ex4::log::log<const char(&)[15],unsigned __int64&,const char(&)[3],class ch31::exercises::ex4::UserCommand&>(const char (&)[15],unsigned __int64 &,const char (&)[3],class ch31::exercises::ex4::UserCommand &): retrieved cmd 36: UserCommand
2025-08-19 16:06:44.0058637 UTC: D:\etmbms\vsprojects\profcppbook\ch31.ixx(78): __cdecl ch31::exercises::ex4::log::log<const char(&)[15],unsigned __int64&,const char(&)[3],class ch31::exercises::ex4::UserCommand&>(const char (&)[15],unsigned __int64 &,const char (&)[3],class ch31::exercises::ex4::UserCommand &): retrieved cmd 37: UserCommand
2025-08-19 16:06:44.0064722 UTC: D:\etmbms\vsprojects\profcppbook\ch31.ixx(78): __cdecl ch31::exercises::ex4::log::log<const char(&)[15],unsigned __int64&,const char(&)[3],class ch31::exercises::ex4::UserCommand&>(const char (&)[15],unsigned __int64 &,const char (&)[3],class ch31::exercises::ex4::UserCommand &): retrieved cmd 38: UserCommand
2025-08-19 16:06:44.0071410 UTC: D:\etmbms\vsprojects\profcppbook\ch31.ixx(78): __cdecl ch31::exercises::ex4::log::log<const char(&)[15],unsigned __int64&,const char(&)[3],class ch31::exercises::ex4::UserCommand&>(const char (&)[15],unsigned __int64 &,const char (&)[3],class ch31::exercises::ex4::UserCommand &): retrieved cmd 39: UserCommand
2025-08-19 16:06:44.0078829 UTC: D:\etmbms\vsprojects\profcppbook\ch31.ixx(78): __cdecl ch31::exercises::ex4::log::log<const char(&)[15],unsigned __int64&,const char(&)[3],class ch31::exercises::ex4::UserCommand&>(const char (&)[15],unsigned __int64 &,const char (&)[3],class ch31::exercises::ex4::UserCommand &): retrieved cmd 40: UserCommand
2025-08-19 16:06:44.0084799 UTC: D:\etmbms\vsprojects\profcppbook\ch31.ixx(78): __cdecl ch31::exercises::ex4::log::log<const char(&)[15],unsigned __int64&,const char(&)[3],class ch31::exercises::ex4::UserCommand&>(const char (&)[15],unsigned __int64 &,const char (&)[3],class ch31::exercises::ex4::UserCommand &): retrieved cmd 41: UserCommand
2025-08-19 16:06:44.0090197 UTC: D:\etmbms\vsprojects\profcppbook\ch31.ixx(78): __cdecl ch31::exercises::ex4::log::log<const char(&)[15],unsigned __int64&,const char(&)[3],class ch31::exercises::ex4::UserCommand&>(const char (&)[15],unsigned __int64 &,const char (&)[3],class ch31::exercises::ex4::UserCommand &): retrieved cmd 42: UserCommand
2025-08-19 16:06:44.0095669 UTC: D:\etmbms\vsprojects\profcppbook\ch31.ixx(78): __cdecl ch31::exercises::ex4::log::log<const char(&)[15],unsigned __int64&,const char(&)[3],class ch31::exercises::ex4::UserCommand&>(const char (&)[15],unsigned __int64 &,const char (&)[3],class ch31::exercises::ex4::UserCommand &): retrieved cmd 43: UserCommand
2025-08-19 16:06:44.0101426 UTC: D:\etmbms\vsprojects\profcppbook\ch31.ixx(78): __cdecl ch31::exercises::ex4::log::log<const char(&)[15],unsigned __int64&,const char(&)[3],class ch31::exercises::ex4::UserCommand&>(const char (&)[15],unsigned __int64 &,const char (&)[3],class ch31::exercises::ex4::UserCommand &): retrieved cmd 44: UserCommand
2025-08-19 16:06:44.0107483 UTC: D:\etmbms\vsprojects\profcppbook\ch31.ixx(78): __cdecl ch31::exercises::ex4::log::log<const char(&)[15],unsigned __int64&,const char(&)[3],class ch31::exercises::ex4::UserCommand&>(const char (&)[15],unsigned __int64 &,const char (&)[3],class ch31::exercises::ex4::UserCommand &): retrieved cmd 45: UserCommand
2025-08-19 16:06:44.0113653 UTC: D:\etmbms\vsprojects\profcppbook\ch31.ixx(78): __cdecl ch31::exercises::ex4::log::log<const char(&)[15],unsigned __int64&,const char(&)[3],class ch31::exercises::ex4::UserCommand&>(const char (&)[15],unsigned __int64 &,const char (&)[3],class ch31::exercises::ex4::UserCommand &): retrieved cmd 46: UserCommand
2025-08-19 16:06:44.0118808 UTC: D:\etmbms\vsprojects\profcppbook\ch31.ixx(78): __cdecl ch31::exercises::ex4::log::log<const char(&)[15],unsigned __int64&,const char(&)[3],class ch31::exercises::ex4::UserCommand&>(const char (&)[15],unsigned __int64 &,const char (&)[3],class ch31::exercises::ex4::UserCommand &): retrieved cmd 47: UserCommand
2025-08-19 16:06:44.0124638 UTC: D:\etmbms\vsprojects\profcppbook\ch31.ixx(78): __cdecl ch31::exercises::ex4::log::log<const char(&)[15],unsigned __int64&,const char(&)[3],class ch31::exercises::ex4::UserCommand&>(const char (&)[15],unsigned __int64 &,const char (&)[3],class ch31::exercises::ex4::UserCommand &): retrieved cmd 48: UserCommand
2025-08-19 16:06:44.0129796 UTC: D:\etmbms\vsprojects\profcppbook\ch31.ixx(78): __cdecl ch31::exercises::ex4::log::log<const char(&)[15],unsigned __int64&,const char(&)[3],class ch31::exercises::ex4::UserCommand&>(const char (&)[15],unsigned __int64 &,const char (&)[3],class ch31::exercises::ex4::UserCommand &): retrieved cmd 49: UserCommand
2025-08-19 16:06:44.0134766 UTC: D:\etmbms\vsprojects\profcppbook\ch31.ixx(78): __cdecl ch31::exercises::ex4::log::log<const char(&)[15],unsigned __int64&,const char(&)[3],class ch31::exercises::ex4::UserCommand&>(const char (&)[15],unsigned __int64 &,const char (&)[3],class ch31::exercises::ex4::UserCommand &): retrieved cmd 50: UserCommand
2025-08-19 16:06:44.0140126 UTC: D:\etmbms\vsprojects\profcppbook\ch31.ixx(78): __cdecl ch31::exercises::ex4::log::log<const char(&)[15],unsigned __int64&,const char(&)[3],class ch31::exercises::ex4::UserCommand&>(const char (&)[15],unsigned __int64 &,const char (&)[3],class ch31::exercises::ex4::UserCommand &): retrieved cmd 51: UserCommand
2025-08-19 16:06:44.0144982 UTC: D:\etmbms\vsprojects\profcppbook\ch31.ixx(78): __cdecl ch31::exercises::ex4::log::log<const char(&)[15],unsigned __int64&,const char(&)[3],class ch31::exercises::ex4::UserCommand&>(const char (&)[15],unsigned __int64 &,const char (&)[3],class ch31::exercises::ex4::UserCommand &): retrieved cmd 52: UserCommand
2025-08-19 16:06:44.0149835 UTC: D:\etmbms\vsprojects\profcppbook\ch31.ixx(78): __cdecl ch31::exercises::ex4::log::log<const char(&)[15],unsigned __int64&,const char(&)[3],class ch31::exercises::ex4::UserCommand&>(const char (&)[15],unsigned __int64 &,const char (&)[3],class ch31::exercises::ex4::UserCommand &): retrieved cmd 53: UserCommand
2025-08-19 16:06:44.0154792 UTC: D:\etmbms\vsprojects\profcppbook\ch31.ixx(78): __cdecl ch31::exercises::ex4::log::log<const char(&)[15],unsigned __int64&,const char(&)[3],class ch31::exercises::ex4::UserCommand&>(const char (&)[15],unsigned __int64 &,const char (&)[3],class ch31::exercises::ex4::UserCommand &): retrieved cmd 54: UserCommand
2025-08-19 16:06:44.0159273 UTC: D:\etmbms\vsprojects\profcppbook\ch31.ixx(78): __cdecl ch31::exercises::ex4::log::log<const char(&)[15],unsigned __int64&,const char(&)[3],class ch31::exercises::ex4::UserCommand&>(const char (&)[15],unsigned __int64 &,const char (&)[3],class ch31::exercises::ex4::UserCommand &): retrieved cmd 55: UserCommand
2025-08-19 16:06:44.0163689 UTC: D:\etmbms\vsprojects\profcppbook\ch31.ixx(78): __cdecl ch31::exercises::ex4::log::log<const char(&)[15],unsigned __int64&,const char(&)[3],class ch31::exercises::ex4::UserCommand&>(const char (&)[15],unsigned __int64 &,const char (&)[3],class ch31::exercises::ex4::UserCommand &): retrieved cmd 56: UserCommand
2025-08-19 16:06:44.0168682 UTC: D:\etmbms\vsprojects\profcppbook\ch31.ixx(78): __cdecl ch31::exercises::ex4::log::log<const char(&)[15],unsigned __int64&,const char(&)[3],class ch31::exercises::ex4::UserCommand&>(const char (&)[15],unsigned __int64 &,const char (&)[3],class ch31::exercises::ex4::UserCommand &): retrieved cmd 57: UserCommand
2025-08-19 16:06:44.0173925 UTC: D:\etmbms\vsprojects\profcppbook\ch31.ixx(78): __cdecl ch31::exercises::ex4::log::log<const char(&)[15],unsigned __int64&,const char(&)[3],class ch31::exercises::ex4::UserCommand&>(const char (&)[15],unsigned __int64 &,const char (&)[3],class ch31::exercises::ex4::UserCommand &): retrieved cmd 58: UserCommand
2025-08-19 16:06:44.0179060 UTC: D:\etmbms\vsprojects\profcppbook\ch31.ixx(78): __cdecl ch31::exercises::ex4::log::log<const char(&)[15],unsigned __int64&,const char(&)[3],class ch31::exercises::ex4::UserCommand&>(const char (&)[15],unsigned __int64 &,const char (&)[3],class ch31::exercises::ex4::UserCommand &): retrieved cmd 59: UserCommand
2025-08-19 16:06:44.0184716 UTC: D:\etmbms\vsprojects\profcppbook\ch31.ixx(78): __cdecl ch31::exercises::ex4::log::log<const char(&)[15],unsigned __int64&,const char(&)[3],class ch31::exercises::ex4::UserCommand&>(const char (&)[15],unsigned __int64 &,const char (&)[3],class ch31::exercises::ex4::UserCommand &): retrieved cmd 60: UserCommand
2025-08-19 16:06:44.0189277 UTC: D:\etmbms\vsprojects\profcppbook\ch31.ixx(78): __cdecl ch31::exercises::ex4::log::log<const char(&)[15],unsigned __int64&,const char(&)[3],class ch31::exercises::ex4::UserCommand&>(const char (&)[15],unsigned __int64 &,const char (&)[3],class ch31::exercises::ex4::UserCommand &): retrieved cmd 61: UserCommand
2025-08-19 16:06:44.0194266 UTC: D:\etmbms\vsprojects\profcppbook\ch31.ixx(78): __cdecl ch31::exercises::ex4::log::log<const char(&)[15],unsigned __int64&,const char(&)[3],class ch31::exercises::ex4::UserCommand&>(const char (&)[15],unsigned __int64 &,const char (&)[3],class ch31::exercises::ex4::UserCommand &): retrieved cmd 62: UserCommand
2025-08-19 16:06:44.0198825 UTC: D:\etmbms\vsprojects\profcppbook\ch31.ixx(78): __cdecl ch31::exercises::ex4::log::log<const char(&)[15],unsigned __int64&,const char(&)[3],class ch31::exercises::ex4::UserCommand&>(const char (&)[15],unsigned __int64 &,const char (&)[3],class ch31::exercises::ex4::UserCommand &): retrieved cmd 63: UserCommand
2025-08-19 16:06:44.0203980 UTC: D:\etmbms\vsprojects\profcppbook\ch31.ixx(78): __cdecl ch31::exercises::ex4::log::log<const char(&)[15],unsigned __int64&,const char(&)[3],class ch31::exercises::ex4::UserCommand&>(const char (&)[15],unsigned __int64 &,const char (&)[3],class ch31::exercises::ex4::UserCommand &): retrieved cmd 64: UserCommand
2025-08-19 16:06:44.0209182 UTC: D:\etmbms\vsprojects\profcppbook\ch31.ixx(78): __cdecl ch31::exercises::ex4::log::log<const char(&)[15],unsigned __int64&,const char(&)[3],class ch31::exercises::ex4::UserCommand&>(const char (&)[15],unsigned __int64 &,const char (&)[3],class ch31::exercises::ex4::UserCommand &): retrieved cmd 65: UserCommand
2025-08-19 16:06:44.0213779 UTC: D:\etmbms\vsprojects\profcppbook\ch31.ixx(78): __cdecl ch31::exercises::ex4::log::log<const char(&)[15],unsigned __int64&,const char(&)[3],class ch31::exercises::ex4::UserCommand&>(const char (&)[15],unsigned __int64 &,const char (&)[3],class ch31::exercises::ex4::UserCommand &): retrieved cmd 66: UserCommand
2025-08-19 16:06:44.0217968 UTC: D:\etmbms\vsprojects\profcppbook\ch31.ixx(78): __cdecl ch31::exercises::ex4::log::log<const char(&)[15],unsigned __int64&,const char(&)[3],class ch31::exercises::ex4::UserCommand&>(const char (&)[15],unsigned __int64 &,const char (&)[3],class ch31::exercises::ex4::UserCommand &): retrieved cmd 67: UserCommand
2025-08-19 16:06:44.0222140 UTC: D:\etmbms\vsprojects\profcppbook\ch31.ixx(78): __cdecl ch31::exercises::ex4::log::log<const char(&)[15],unsigned __int64&,const char(&)[3],class ch31::exercises::ex4::UserCommand&>(const char (&)[15],unsigned __int64 &,const char (&)[3],class ch31::exercises::ex4::UserCommand &): retrieved cmd 68: UserCommand
2025-08-19 16:06:44.0226348 UTC: D:\etmbms\vsprojects\profcppbook\ch31.ixx(78): __cdecl ch31::exercises::ex4::log::log<const char(&)[15],unsigned __int64&,const char(&)[3],class ch31::exercises::ex4::UserCommand&>(const char (&)[15],unsigned __int64 &,const char (&)[3],class ch31::exercises::ex4::UserCommand &): retrieved cmd 69: UserCommand
2025-08-19 16:06:44.0230551 UTC: D:\etmbms\vsprojects\profcppbook\ch31.ixx(78): __cdecl ch31::exercises::ex4::log::log<const char(&)[15],unsigned __int64&,const char(&)[3],class ch31::exercises::ex4::UserCommand&>(const char (&)[15],unsigned __int64 &,const char (&)[3],class ch31::exercises::ex4::UserCommand &): retrieved cmd 70: UserCommand
2025-08-19 16:06:44.0234748 UTC: D:\etmbms\vsprojects\profcppbook\ch31.ixx(78): __cdecl ch31::exercises::ex4::log::log<const char(&)[15],unsigned __int64&,const char(&)[3],class ch31::exercises::ex4::UserCommand&>(const char (&)[15],unsigned __int64 &,const char (&)[3],class ch31::exercises::ex4::UserCommand &): retrieved cmd 71: UserCommand
2025-08-19 16:06:44.0239245 UTC: D:\etmbms\vsprojects\profcppbook\ch31.ixx(78): __cdecl ch31::exercises::ex4::log::log<const char(&)[15],unsigned __int64&,const char(&)[3],class ch31::exercises::ex4::UserCommand&>(const char (&)[15],unsigned __int64 &,const char (&)[3],class ch31::exercises::ex4::UserCommand &): retrieved cmd 72: UserCommand
2025-08-19 16:06:44.0243753 UTC: D:\etmbms\vsprojects\profcppbook\ch31.ixx(78): __cdecl ch31::exercises::ex4::log::log<const char(&)[15],unsigned __int64&,const char(&)[3],class ch31::exercises::ex4::UserCommand&>(const char (&)[15],unsigned __int64 &,const char (&)[3],class ch31::exercises::ex4::UserCommand &): retrieved cmd 73: UserCommand
2025-08-19 16:06:44.0249613 UTC: D:\etmbms\vsprojects\profcppbook\ch31.ixx(78): __cdecl ch31::exercises::ex4::log::log<const char(&)[15],unsigned __int64&,const char(&)[3],class ch31::exercises::ex4::UserCommand&>(const char (&)[15],unsigned __int64 &,const char (&)[3],class ch31::exercises::ex4::UserCommand &): retrieved cmd 74: UserCommand
2025-08-19 16:06:44.0254735 UTC: D:\etmbms\vsprojects\profcppbook\ch31.ixx(78): __cdecl ch31::exercises::ex4::log::log<const char(&)[15],unsigned __int64&,const char(&)[3],class ch31::exercises::ex4::UserCommand&>(const char (&)[15],unsigned __int64 &,const char (&)[3],class ch31::exercises::ex4::UserCommand &): retrieved cmd 75: UserCommand
2025-08-19 16:06:44.0259153 UTC: D:\etmbms\vsprojects\profcppbook\ch31.ixx(78): __cdecl ch31::exercises::ex4::log::log<const char(&)[15],unsigned __int64&,const char(&)[3],class ch31::exercises::ex4::UserCommand&>(const char (&)[15],unsigned __int64 &,const char (&)[3],class ch31::exercises::ex4::UserCommand &): retrieved cmd 76: UserCommand
2025-08-19 16:06:44.0263385 UTC: D:\etmbms\vsprojects\profcppbook\ch31.ixx(78): __cdecl ch31::exercises::ex4::log::log<const char(&)[15],unsigned __int64&,const char(&)[3],class ch31::exercises::ex4::UserCommand&>(const char (&)[15],unsigned __int64 &,const char (&)[3],class ch31::exercises::ex4::UserCommand &): retrieved cmd 77: UserCommand
2025-08-19 16:06:44.0268116 UTC: D:\etmbms\vsprojects\profcppbook\ch31.ixx(78): __cdecl ch31::exercises::ex4::log::log<const char(&)[15],unsigned __int64&,const char(&)[3],class ch31::exercises::ex4::UserCommand&>(const char (&)[15],unsigned __int64 &,const char (&)[3],class ch31::exercises::ex4::UserCommand &): retrieved cmd 78: UserCommand
2025-08-19 16:06:44.0272815 UTC: D:\etmbms\vsprojects\profcppbook\ch31.ixx(78): __cdecl ch31::exercises::ex4::log::log<const char(&)[15],unsigned __int64&,const char(&)[3],class ch31::exercises::ex4::UserCommand&>(const char (&)[15],unsigned __int64 &,const char (&)[3],class ch31::exercises::ex4::UserCommand &): retrieved cmd 79: UserCommand
2025-08-19 16:06:44.0277181 UTC: D:\etmbms\vsprojects\profcppbook\ch31.ixx(78): __cdecl ch31::exercises::ex4::log::log<const char(&)[15],unsigned __int64&,const char(&)[3],class ch31::exercises::ex4::UserCommand&>(const char (&)[15],unsigned __int64 &,const char (&)[3],class ch31::exercises::ex4::UserCommand &): retrieved cmd 80: UserCommand
2025-08-19 16:06:44.0282179 UTC: D:\etmbms\vsprojects\profcppbook\ch31.ixx(78): __cdecl ch31::exercises::ex4::log::log<const char(&)[15],unsigned __int64&,const char(&)[3],class ch31::exercises::ex4::UserCommand&>(const char (&)[15],unsigned __int64 &,const char (&)[3],class ch31::exercises::ex4::UserCommand &): retrieved cmd 81: UserCommand
2025-08-19 16:06:44.0286571 UTC: D:\etmbms\vsprojects\profcppbook\ch31.ixx(78): __cdecl ch31::exercises::ex4::log::log<const char(&)[15],unsigned __int64&,const char(&)[3],class ch31::exercises::ex4::UserCommand&>(const char (&)[15],unsigned __int64 &,const char (&)[3],class ch31::exercises::ex4::UserCommand &): retrieved cmd 82: UserCommand
2025-08-19 16:06:44.0291225 UTC: D:\etmbms\vsprojects\profcppbook\ch31.ixx(78): __cdecl ch31::exercises::ex4::log::log<const char(&)[15],unsigned __int64&,const char(&)[3],class ch31::exercises::ex4::UserCommand&>(const char (&)[15],unsigned __int64 &,const char (&)[3],class ch31::exercises::ex4::UserCommand &): retrieved cmd 83: UserCommand
2025-08-19 16:06:44.0295924 UTC: D:\etmbms\vsprojects\profcppbook\ch31.ixx(78): __cdecl ch31::exercises::ex4::log::log<const char(&)[15],unsigned __int64&,const char(&)[3],class ch31::exercises::ex4::UserCommand&>(const char (&)[15],unsigned __int64 &,const char (&)[3],class ch31::exercises::ex4::UserCommand &): retrieved cmd 84: UserCommand
2025-08-19 16:06:44.0301162 UTC: D:\etmbms\vsprojects\profcppbook\ch31.ixx(78): __cdecl ch31::exercises::ex4::log::log<const char(&)[15],unsigned __int64&,const char(&)[3],class ch31::exercises::ex4::UserCommand&>(const char (&)[15],unsigned __int64 &,const char (&)[3],class ch31::exercises::ex4::UserCommand &): retrieved cmd 85: UserCommand
2025-08-19 16:06:44.0306721 UTC: D:\etmbms\vsprojects\profcppbook\ch31.ixx(78): __cdecl ch31::exercises::ex4::log::log<const char(&)[15],unsigned __int64&,const char(&)[3],class ch31::exercises::ex4::UserCommand&>(const char (&)[15],unsigned __int64 &,const char (&)[3],class ch31::exercises::ex4::UserCommand &): retrieved cmd 86: UserCommand
2025-08-19 16:06:44.0312688 UTC: D:\etmbms\vsprojects\profcppbook\ch31.ixx(78): __cdecl ch31::exercises::ex4::log::log<const char(&)[15],unsigned __int64&,const char(&)[3],class ch31::exercises::ex4::UserCommand&>(const char (&)[15],unsigned __int64 &,const char (&)[3],class ch31::exercises::ex4::UserCommand &): retrieved cmd 87: UserCommand
2025-08-19 16:06:44.0318028 UTC: D:\etmbms\vsprojects\profcppbook\ch31.ixx(78): __cdecl ch31::exercises::ex4::log::log<const char(&)[15],unsigned __int64&,const char(&)[3],class ch31::exercises::ex4::UserCommand&>(const char (&)[15],unsigned __int64 &,const char (&)[3],class ch31::exercises::ex4::UserCommand &): retrieved cmd 88: UserCommand
2025-08-19 16:06:44.0322909 UTC: D:\etmbms\vsprojects\profcppbook\ch31.ixx(78): __cdecl ch31::exercises::ex4::log::log<const char(&)[15],unsigned __int64&,const char(&)[3],class ch31::exercises::ex4::UserCommand&>(const char (&)[15],unsigned __int64 &,const char (&)[3],class ch31::exercises::ex4::UserCommand &): retrieved cmd 89: UserCommand
2025-08-19 16:06:44.0327826 UTC: D:\etmbms\vsprojects\profcppbook\ch31.ixx(78): __cdecl ch31::exercises::ex4::log::log<const char(&)[15],unsigned __int64&,const char(&)[3],class ch31::exercises::ex4::UserCommand&>(const char (&)[15],unsigned __int64 &,const char (&)[3],class ch31::exercises::ex4::UserCommand &): retrieved cmd 90: UserCommand
2025-08-19 16:06:44.0332531 UTC: D:\etmbms\vsprojects\profcppbook\ch31.ixx(78): __cdecl ch31::exercises::ex4::log::log<const char(&)[15],unsigned __int64&,const char(&)[3],class ch31::exercises::ex4::UserCommand&>(const char (&)[15],unsigned __int64 &,const char (&)[3],class ch31::exercises::ex4::UserCommand &): retrieved cmd 91: UserCommand
2025-08-19 16:06:44.0337351 UTC: D:\etmbms\vsprojects\profcppbook\ch31.ixx(78): __cdecl ch31::exercises::ex4::log::log<const char(&)[15],unsigned __int64&,const char(&)[3],class ch31::exercises::ex4::UserCommand&>(const char (&)[15],unsigned __int64 &,const char (&)[3],class ch31::exercises::ex4::UserCommand &): retrieved cmd 92: UserCommand
2025-08-19 16:06:44.0342587 UTC: D:\etmbms\vsprojects\profcppbook\ch31.ixx(78): __cdecl ch31::exercises::ex4::log::log<const char(&)[15],unsigned __int64&,const char(&)[3],class ch31::exercises::ex4::UserCommand&>(const char (&)[15],unsigned __int64 &,const char (&)[3],class ch31::exercises::ex4::UserCommand &): retrieved cmd 93: UserCommand
2025-08-19 16:06:44.0347960 UTC: D:\etmbms\vsprojects\profcppbook\ch31.ixx(78): __cdecl ch31::exercises::ex4::log::log<const char(&)[15],unsigned __int64&,const char(&)[3],class ch31::exercises::ex4::UserCommand&>(const char (&)[15],unsigned __int64 &,const char (&)[3],class ch31::exercises::ex4::UserCommand &): retrieved cmd 94: UserCommand
2025-08-19 16:06:44.0352873 UTC: D:\etmbms\vsprojects\profcppbook\ch31.ixx(78): __cdecl ch31::exercises::ex4::log::log<const char(&)[15],unsigned __int64&,const char(&)[3],class ch31::exercises::ex4::UserCommand&>(const char (&)[15],unsigned __int64 &,const char (&)[3],class ch31::exercises::ex4::UserCommand &): retrieved cmd 95: UserCommand
2025-08-19 16:06:44.0357598 UTC: D:\etmbms\vsprojects\profcppbook\ch31.ixx(78): __cdecl ch31::exercises::ex4::log::log<const char(&)[15],unsigned __int64&,const char(&)[3],class ch31::exercises::ex4::UserCommand&>(const char (&)[15],unsigned __int64 &,const char (&)[3],class ch31::exercises::ex4::UserCommand &): retrieved cmd 96: UserCommand
2025-08-19 16:06:44.0362243 UTC: D:\etmbms\vsprojects\profcppbook\ch31.ixx(78): __cdecl ch31::exercises::ex4::log::log<const char(&)[15],unsigned __int64&,const char(&)[3],class ch31::exercises::ex4::UserCommand&>(const char (&)[15],unsigned __int64 &,const char (&)[3],class ch31::exercises::ex4::UserCommand &): retrieved cmd 97: UserCommand
2025-08-19 16:06:44.0367323 UTC: D:\etmbms\vsprojects\profcppbook\ch31.ixx(78): __cdecl ch31::exercises::ex4::log::log<const char(&)[15],unsigned __int64&,const char(&)[3],class ch31::exercises::ex4::UserCommand&>(const char (&)[15],unsigned __int64 &,const char (&)[3],class ch31::exercises::ex4::UserCommand &): retrieved cmd 98: UserCommand
2025-08-19 16:06:44.0372241 UTC: D:\etmbms\vsprojects\profcppbook\ch31.ixx(78): __cdecl ch31::exercises::ex4::log::log<const char(&)[15],unsigned __int64&,const char(&)[3],class ch31::exercises::ex4::UserCommand&>(const char (&)[15],unsigned __int64 &,const char (&)[3],class ch31::exercises::ex4::UserCommand &): retrieved cmd 99: UserCommand
2025-08-19 16:06:48.6319330 UTC: D:\etmbms\vsprojects\profcppbook\ch31.ixx(78): __cdecl ch31::exercises::ex4::log::log<const char(&)[11],char*&>(const char (&)[11],char *&): Argument: D:\etmbms\vsprojects\profcppbook\x64\Debug\profcppbook.exe
2025-08-19 16:06:48.6342400 UTC: D:\etmbms\vsprojects\profcppbook\ch31.ixx(78): __cdecl ch31::exercises::ex4::log::log<const char(&)[11],char*&>(const char (&)[11],char *&): Argument: -d
2025-08-19 16:06:48.6347801 UTC: D:\etmbms\vsprojects\profcppbook\ch31.ixx(78): __cdecl ch31::exercises::ex4::log::log<const char(&)[17],class ch31::exercises::ex4::ComplicatedClass&>(const char (&)[17],class ch31::exercises::ex4::ComplicatedClass &): given argument: ComplicatedClass
2025-08-19 16:06:48.6353509 UTC: D:\etmbms\vsprojects\profcppbook\ch31.ixx(78): __cdecl ch31::exercises::ex4::log::log<const char(&)[15],unsigned __int64&,const char(&)[3],class ch31::exercises::ex4::UserCommand&>(const char (&)[15],unsigned __int64 &,const char (&)[3],class ch31::exercises::ex4::UserCommand &): retrieved cmd 0: UserCommand
2025-08-19 16:06:48.6359720 UTC: D:\etmbms\vsprojects\profcppbook\ch31.ixx(78): __cdecl ch31::exercises::ex4::log::log<const char(&)[15],unsigned __int64&,const char(&)[3],class ch31::exercises::ex4::UserCommand&>(const char (&)[15],unsigned __int64 &,const char (&)[3],class ch31::exercises::ex4::UserCommand &): retrieved cmd 1: UserCommand
2025-08-19 16:06:48.6364513 UTC: D:\etmbms\vsprojects\profcppbook\ch31.ixx(78): __cdecl ch31::exercises::ex4::log::log<const char(&)[15],unsigned __int64&,const char(&)[3],class ch31::exercises::ex4::UserCommand&>(const char (&)[15],unsigned __int64 &,const char (&)[3],class ch31::exercises::ex4::UserCommand &): retrieved cmd 2: UserCommand
2025-08-19 16:06:48.6369969 UTC: D:\etmbms\vsprojects\profcppbook\ch31.ixx(78): __cdecl ch31::exercises::ex4::log::log<const char(&)[15],unsigned __int64&,const char(&)[3],class ch31::exercises::ex4::UserCommand&>(const char (&)[15],unsigned __int64 &,const char (&)[3],class ch31::exercises::ex4::UserCommand &): retrieved cmd 3: UserCommand
2025-08-19 16:06:48.6374686 UTC: D:\etmbms\vsprojects\profcppbook\ch31.ixx(78): __cdecl ch31::exercises::ex4::log::log<const char(&)[15],unsigned __int64&,const char(&)[3],class ch31::exercises::ex4::UserCommand&>(const char (&)[15],unsigned __int64 &,const char (&)[3],class ch31::exercises::ex4::UserCommand &): retrieved cmd 4: UserCommand
2025-08-19 16:06:48.6379289 UTC: D:\etmbms\vsprojects\profcppbook\ch31.ixx(78): __cdecl ch31::exercises::ex4::log::log<const char(&)[15],unsigned __int64&,const char(&)[3],class ch31::exercises::ex4::UserCommand&>(const char (&)[15],unsigned __int64 &,const char (&)[3],class ch31::exercises::ex4::UserCommand &): retrieved cmd 5: UserCommand
2025-08-19 16:06:48.6384151 UTC: D:\etmbms\vsprojects\profcppbook\ch31.ixx(78): __cdecl ch31::exercises::ex4::log::log<const char(&)[15],unsigned __int64&,const char(&)[3],class ch31::exercises::ex4::UserCommand&>(const char (&)[15],unsigned __int64 &,const char (&)[3],class ch31::exercises::ex4::UserCommand &): retrieved cmd 6: UserCommand
2025-08-19 16:06:48.6388544 UTC: D:\etmbms\vsprojects\profcppbook\ch31.ixx(78): __cdecl ch31::exercises::ex4::log::log<const char(&)[15],unsigned __int64&,const char(&)[3],class ch31::exercises::ex4::UserCommand&>(const char (&)[15],unsigned __int64 &,const char (&)[3],class ch31::exercises::ex4::UserCommand &): retrieved cmd 7: UserCommand
2025-08-19 16:06:48.6393704 UTC: D:\etmbms\vsprojects\profcppbook\ch31.ixx(78): __cdecl ch31::exercises::ex4::log::log<const char(&)[15],unsigned __int64&,const char(&)[3],class ch31::exercises::ex4::UserCommand&>(const char (&)[15],unsigned __int64 &,const char (&)[3],class ch31::exercises::ex4::UserCommand &): retrieved cmd 8: UserCommand
2025-08-19 16:06:48.6398449 UTC: D:\etmbms\vsprojects\profcppbook\ch31.ixx(78): __cdecl ch31::exercises::ex4::log::log<const char(&)[15],unsigned __int64&,const char(&)[3],class ch31::exercises::ex4::UserCommand&>(const char (&)[15],unsigned __int64 &,const char (&)[3],class ch31::exercises::ex4::UserCommand &): retrieved cmd 9: UserCommand
2025-08-19 16:06:48.6403054 UTC: D:\etmbms\vsprojects\profcppbook\ch31.ixx(78): __cdecl ch31::exercises::ex4::log::log<const char(&)[15],unsigned __int64&,const char(&)[3],class ch31::exercises::ex4::UserCommand&>(const char (&)[15],unsigned __int64 &,const char (&)[3],class ch31::exercises::ex4::UserCommand &): retrieved cmd 10: UserCommand
2025-08-19 16:06:48.6408605 UTC: D:\etmbms\vsprojects\profcppbook\ch31.ixx(78): __cdecl ch31::exercises::ex4::log::log<const char(&)[15],unsigned __int64&,const char(&)[3],class ch31::exercises::ex4::UserCommand&>(const char (&)[15],unsigned __int64 &,const char (&)[3],class ch31::exercises::ex4::UserCommand &): retrieved cmd 11: UserCommand
2025-08-19 16:06:48.6417073 UTC: D:\etmbms\vsprojects\profcppbook\ch31.ixx(78): __cdecl ch31::exercises::ex4::log::log<const char(&)[15],unsigned __int64&,const char(&)[3],class ch31::exercises::ex4::UserCommand&>(const char (&)[15],unsigned __int64 &,const char (&)[3],class ch31::exercises::ex4::UserCommand &): retrieved cmd 12: UserCommand
2025-08-19 16:06:48.6421672 UTC: D:\etmbms\vsprojects\profcppbook\ch31.ixx(78): __cdecl ch31::exercises::ex4::log::log<const char(&)[15],unsigned __int64&,const char(&)[3],class ch31::exercises::ex4::UserCommand&>(const char (&)[15],unsigned __int64 &,const char (&)[3],class ch31::exercises::ex4::UserCommand &): retrieved cmd 13: UserCommand
2025-08-19 16:06:48.6426404 UTC: D:\etmbms\vsprojects\profcppbook\ch31.ixx(78): __cdecl ch31::exercises::ex4::log::log<const char(&)[15],unsigned __int64&,const char(&)[3],class ch31::exercises::ex4::UserCommand&>(const char (&)[15],unsigned __int64 &,const char (&)[3],class ch31::exercises::ex4::UserCommand &): retrieved cmd 14: UserCommand
2025-08-19 16:06:48.6430580 UTC: D:\etmbms\vsprojects\profcppbook\ch31.ixx(78): __cdecl ch31::exercises::ex4::log::log<const char(&)[15],unsigned __int64&,const char(&)[3],class ch31::exercises::ex4::UserCommand&>(const char (&)[15],unsigned __int64 &,const char (&)[3],class ch31::exercises::ex4::UserCommand &): retrieved cmd 15: UserCommand
2025-08-19 16:06:48.6435117 UTC: D:\etmbms\vsprojects\profcppbook\ch31.ixx(78): __cdecl ch31::exercises::ex4::log::log<const char(&)[15],unsigned __int64&,const char(&)[3],class ch31::exercises::ex4::UserCommand&>(const char (&)[15],unsigned __int64 &,const char (&)[3],class ch31::exercises::ex4::UserCommand &): retrieved cmd 16: UserCommand
2025-08-19 16:06:48.6440440 UTC: D:\etmbms\vsprojects\profcppbook\ch31.ixx(78): __cdecl ch31::exercises::ex4::log::log<const char(&)[15],unsigned __int64&,const char(&)[3],class ch31::exercises::ex4::UserCommand&>(const char (&)[15],unsigned __int64 &,const char (&)[3],class ch31::exercises::ex4::UserCommand &): retrieved cmd 17: UserCommand
2025-08-19 16:06:48.6445397 UTC: D:\etmbms\vsprojects\profcppbook\ch31.ixx(78): __cdecl ch31::exercises::ex4::log::log<const char(&)[15],unsigned __int64&,const char(&)[3],class ch31::exercises::ex4::UserCommand&>(const char (&)[15],unsigned __int64 &,const char (&)[3],class ch31::exercises::ex4::UserCommand &): retrieved cmd 18: UserCommand
2025-08-19 16:06:48.6450192 UTC: D:\etmbms\vsprojects\profcppbook\ch31.ixx(78): __cdecl ch31::exercises::ex4::log::log<const char(&)[15],unsigned __int64&,const char(&)[3],class ch31::exercises::ex4::UserCommand&>(const char (&)[15],unsigned __int64 &,const char (&)[3],class ch31::exercises::ex4::UserCommand &): retrieved cmd 19: UserCommand
2025-08-19 16:06:48.6455489 UTC: D:\etmbms\vsprojects\profcppbook\ch31.ixx(78): __cdecl ch31::exercises::ex4::log::log<const char(&)[15],unsigned __int64&,const char(&)[3],class ch31::exercises::ex4::UserCommand&>(const char (&)[15],unsigned __int64 &,const char (&)[3],class ch31::exercises::ex4::UserCommand &): retrieved cmd 20: UserCommand
2025-08-19 16:06:48.6460164 UTC: D:\etmbms\vsprojects\profcppbook\ch31.ixx(78): __cdecl ch31::exercises::ex4::log::log<const char(&)[15],unsigned __int64&,const char(&)[3],class ch31::exercises::ex4::UserCommand&>(const char (&)[15],unsigned __int64 &,const char (&)[3],class ch31::exercises::ex4::UserCommand &): retrieved cmd 21: UserCommand
2025-08-19 16:06:48.6465877 UTC: D:\etmbms\vsprojects\profcppbook\ch31.ixx(78): __cdecl ch31::exercises::ex4::log::log<const char(&)[15],unsigned __int64&,const char(&)[3],class ch31::exercises::ex4::UserCommand&>(const char (&)[15],unsigned __int64 &,const char (&)[3],class ch31::exercises::ex4::UserCommand &): retrieved cmd 22: UserCommand
2025-08-19 16:06:48.6471003 UTC: D:\etmbms\vsprojects\profcppbook\ch31.ixx(78): __cdecl ch31::exercises::ex4::log::log<const char(&)[15],unsigned __int64&,const char(&)[3],class ch31::exercises::ex4::UserCommand&>(const char (&)[15],unsigned __int64 &,const char (&)[3],class ch31::exercises::ex4::UserCommand &): retrieved cmd 23: UserCommand
2025-08-19 16:06:48.6476012 UTC: D:\etmbms\vsprojects\profcppbook\ch31.ixx(78): __cdecl ch31::exercises::ex4::log::log<const char(&)[15],unsigned __int64&,const char(&)[3],class ch31::exercises::ex4::UserCommand&>(const char (&)[15],unsigned __int64 &,const char (&)[3],class ch31::exercises::ex4::UserCommand &): retrieved cmd 24: UserCommand
2025-08-19 16:06:48.6480725 UTC: D:\etmbms\vsprojects\profcppbook\ch31.ixx(78): __cdecl ch31::exercises::ex4::log::log<const char(&)[15],unsigned __int64&,const char(&)[3],class ch31::exercises::ex4::UserCommand&>(const char (&)[15],unsigned __int64 &,const char (&)[3],class ch31::exercises::ex4::UserCommand &): retrieved cmd 25: UserCommand
2025-08-19 16:06:48.6485555 UTC: D:\etmbms\vsprojects\profcppbook\ch31.ixx(78): __cdecl ch31::exercises::ex4::log::log<const char(&)[15],unsigned __int64&,const char(&)[3],class ch31::exercises::ex4::UserCommand&>(const char (&)[15],unsigned __int64 &,const char (&)[3],class ch31::exercises::ex4::UserCommand &): retrieved cmd 26: UserCommand
2025-08-19 16:06:48.6491033 UTC: D:\etmbms\vsprojects\profcppbook\ch31.ixx(78): __cdecl ch31::exercises::ex4::log::log<const char(&)[15],unsigned __int64&,const char(&)[3],class ch31::exercises::ex4::UserCommand&>(const char (&)[15],unsigned __int64 &,const char (&)[3],class ch31::exercises::ex4::UserCommand &): retrieved cmd 27: UserCommand
2025-08-19 16:06:48.6498236 UTC: D:\etmbms\vsprojects\profcppbook\ch31.ixx(78): __cdecl ch31::exercises::ex4::log::log<const char(&)[15],unsigned __int64&,const char(&)[3],class ch31::exercises::ex4::UserCommand&>(const char (&)[15],unsigned __int64 &,const char (&)[3],class ch31::exercises::ex4::UserCommand &): retrieved cmd 28: UserCommand
2025-08-19 16:06:48.6503520 UTC: D:\etmbms\vsprojects\profcppbook\ch31.ixx(78): __cdecl ch31::exercises::ex4::log::log<const char(&)[15],unsigned __int64&,const char(&)[3],class ch31::exercises::ex4::UserCommand&>(const char (&)[15],unsigned __int64 &,const char (&)[3],class ch31::exercises::ex4::UserCommand &): retrieved cmd 29: UserCommand
2025-08-19 16:06:48.6508481 UTC: D:\etmbms\vsprojects\profcppbook\ch31.ixx(78): __cdecl ch31::exercises::ex4::log::log<const char(&)[15],unsigned __int64&,const char(&)[3],class ch31::exercises::ex4::UserCommand&>(const char (&)[15],unsigned __int64 &,const char (&)[3],class ch31::exercises::ex4::UserCommand &): retrieved cmd 30: UserCommand
2025-08-19 16:06:48.6513467 UTC: D:\etmbms\vsprojects\profcppbook\ch31.ixx(78): __cdecl ch31::exercises::ex4::log::log<const char(&)[15],unsigned __int64&,const char(&)[3],class ch31::exercises::ex4::UserCommand&>(const char (&)[15],unsigned __int64 &,const char (&)[3],class ch31::exercises::ex4::UserCommand &): retrieved cmd 31: UserCommand
2025-08-19 16:06:48.6518302 UTC: D:\etmbms\vsprojects\profcppbook\ch31.ixx(78): __cdecl ch31::exercises::ex4::log::log<const char(&)[15],unsigned __int64&,const char(&)[3],class ch31::exercises::ex4::UserCommand&>(const char (&)[15],unsigned __int64 &,const char (&)[3],class ch31::exercises::ex4::UserCommand &): retrieved cmd 32: UserCommand
2025-08-19 16:06:48.6522805 UTC: D:\etmbms\vsprojects\profcppbook\ch31.ixx(78): __cdecl ch31::exercises::ex4::log::log<const char(&)[15],unsigned __int64&,const char(&)[3],class ch31::exercises::ex4::UserCommand&>(const char (&)[15],unsigned __int64 &,const char (&)[3],class ch31::exercises::ex4::UserCommand &): retrieved cmd 33: UserCommand
2025-08-19 16:06:48.6527088 UTC: D:\etmbms\vsprojects\profcppbook\ch31.ixx(78): __cdecl ch31::exercises::ex4::log::log<const char(&)[15],unsigned __int64&,const char(&)[3],class ch31::exercises::ex4::UserCommand&>(const char (&)[15],unsigned __int64 &,const char (&)[3],class ch31::exercises::ex4::UserCommand &): retrieved cmd 34: UserCommand
2025-08-19 16:06:48.6531717 UTC: D:\etmbms\vsprojects\profcppbook\ch31.ixx(78): __cdecl ch31::exercises::ex4::log::log<const char(&)[15],unsigned __int64&,const char(&)[3],class ch31::exercises::ex4::UserCommand&>(const char (&)[15],unsigned __int64 &,const char (&)[3],class ch31::exercises::ex4::UserCommand &): retrieved cmd 35: UserCommand
2025-08-19 16:06:48.6536776 UTC: D:\etmbms\vsprojects\profcppbook\ch31.ixx(78): __cdecl ch31::exercises::ex4::log::log<const char(&)[15],unsigned __int64&,const char(&)[3],class ch31::exercises::ex4::UserCommand&>(const char (&)[15],unsigned __int64 &,const char (&)[3],class ch31::exercises::ex4::UserCommand &): retrieved cmd 36: UserCommand
2025-08-19 16:06:48.6541249 UTC: D:\etmbms\vsprojects\profcppbook\ch31.ixx(78): __cdecl ch31::exercises::ex4::log::log<const char(&)[15],unsigned __int64&,const char(&)[3],class ch31::exercises::ex4::UserCommand&>(const char (&)[15],unsigned __int64 &,const char (&)[3],class ch31::exercises::ex4::UserCommand &): retrieved cmd 37: UserCommand
2025-08-19 16:06:48.6546280 UTC: D:\etmbms\vsprojects\profcppbook\ch31.ixx(78): __cdecl ch31::exercises::ex4::log::log<const char(&)[15],unsigned __int64&,const char(&)[3],class ch31::exercises::ex4::UserCommand&>(const char (&)[15],unsigned __int64 &,const char (&)[3],class ch31::exercises::ex4::UserCommand &): retrieved cmd 38: UserCommand
2025-08-19 16:06:48.6550718 UTC: D:\etmbms\vsprojects\profcppbook\ch31.ixx(78): __cdecl ch31::exercises::ex4::log::log<const char(&)[15],unsigned __int64&,const char(&)[3],class ch31::exercises::ex4::UserCommand&>(const char (&)[15],unsigned __int64 &,const char (&)[3],class ch31::exercises::ex4::UserCommand &): retrieved cmd 39: UserCommand
2025-08-19 16:06:48.6555689 UTC: D:\etmbms\vsprojects\profcppbook\ch31.ixx(78): __cdecl ch31::exercises::ex4::log::log<const char(&)[15],unsigned __int64&,const char(&)[3],class ch31::exercises::ex4::UserCommand&>(const char (&)[15],unsigned __int64 &,const char (&)[3],class ch31::exercises::ex4::UserCommand &): retrieved cmd 40: UserCommand
2025-08-19 16:06:48.6561335 UTC: D:\etmbms\vsprojects\profcppbook\ch31.ixx(78): __cdecl ch31::exercises::ex4::log::log<const char(&)[15],unsigned __int64&,const char(&)[3],class ch31::exercises::ex4::UserCommand&>(const char (&)[15],unsigned __int64 &,const char (&)[3],class ch31::exercises::ex4::UserCommand &): retrieved cmd 41: UserCommand
2025-08-19 16:06:48.6567189 UTC: D:\etmbms\vsprojects\profcppbook\ch31.ixx(78): __cdecl ch31::exercises::ex4::log::log<const char(&)[15],unsigned __int64&,const char(&)[3],class ch31::exercises::ex4::UserCommand&>(const char (&)[15],unsigned __int64 &,const char (&)[3],class ch31::exercises::ex4::UserCommand &): retrieved cmd 42: UserCommand
2025-08-19 16:06:48.6572326 UTC: D:\etmbms\vsprojects\profcppbook\ch31.ixx(78): __cdecl ch31::exercises::ex4::log::log<const char(&)[15],unsigned __int64&,const char(&)[3],class ch31::exercises::ex4::UserCommand&>(const char (&)[15],unsigned __int64 &,const char (&)[3],class ch31::exercises::ex4::UserCommand &): retrieved cmd 43: UserCommand
2025-08-19 16:06:48.6578555 UTC: D:\etmbms\vsprojects\profcppbook\ch31.ixx(78): __cdecl ch31::exercises::ex4::log::log<const char(&)[15],unsigned __int64&,const char(&)[3],class ch31::exercises::ex4::UserCommand&>(const char (&)[15],unsigned __int64 &,const char (&)[3],class ch31::exercises::ex4::UserCommand &): retrieved cmd 44: UserCommand
2025-08-19 16:06:48.6583768 UTC: D:\etmbms\vsprojects\profcppbook\ch31.ixx(78): __cdecl ch31::exercises::ex4::log::log<const char(&)[15],unsigned __int64&,const char(&)[3],class ch31::exercises::ex4::UserCommand&>(const char (&)[15],unsigned __int64 &,const char (&)[3],class ch31::exercises::ex4::UserCommand &): retrieved cmd 45: UserCommand
2025-08-19 16:06:48.6589130 UTC: D:\etmbms\vsprojects\profcppbook\ch31.ixx(78): __cdecl ch31::exercises::ex4::log::log<const char(&)[15],unsigned __int64&,const char(&)[3],class ch31::exercises::ex4::UserCommand&>(const char (&)[15],unsigned __int64 &,const char (&)[3],class ch31::exercises::ex4::UserCommand &): retrieved cmd 46: UserCommand
2025-08-19 16:06:48.6594430 UTC: D:\etmbms\vsprojects\profcppbook\ch31.ixx(78): __cdecl ch31::exercises::ex4::log::log<const char(&)[15],unsigned __int64&,const char(&)[3],class ch31::exercises::ex4::UserCommand&>(const char (&)[15],unsigned __int64 &,const char (&)[3],class ch31::exercises::ex4::UserCommand &): retrieved cmd 47: UserCommand
2025-08-19 16:06:48.6599234 UTC: D:\etmbms\vsprojects\profcppbook\ch31.ixx(78): __cdecl ch31::exercises::ex4::log::log<const char(&)[15],unsigned __int64&,const char(&)[3],class ch31::exercises::ex4::UserCommand&>(const char (&)[15],unsigned __int64 &,const char (&)[3],class ch31::exercises::ex4::UserCommand &): retrieved cmd 48: UserCommand
2025-08-19 16:06:48.6604038 UTC: D:\etmbms\vsprojects\profcppbook\ch31.ixx(78): __cdecl ch31::exercises::ex4::log::log<const char(&)[15],unsigned __int64&,const char(&)[3],class ch31::exercises::ex4::UserCommand&>(const char (&)[15],unsigned __int64 &,const char (&)[3],class ch31::exercises::ex4::UserCommand &): retrieved cmd 49: UserCommand
2025-08-19 16:06:48.6608735 UTC: D:\etmbms\vsprojects\profcppbook\ch31.ixx(78): __cdecl ch31::exercises::ex4::log::log<const char(&)[15],unsigned __int64&,const char(&)[3],class ch31::exercises::ex4::UserCommand&>(const char (&)[15],unsigned __int64 &,const char (&)[3],class ch31::exercises::ex4::UserCommand &): retrieved cmd 50: UserCommand
2025-08-19 16:06:48.6613391 UTC: D:\etmbms\vsprojects\profcppbook\ch31.ixx(78): __cdecl ch31::exercises::ex4::log::log<const char(&)[15],unsigned __int64&,const char(&)[3],class ch31::exercises::ex4::UserCommand&>(const char (&)[15],unsigned __int64 &,const char (&)[3],class ch31::exercises::ex4::UserCommand &): retrieved cmd 51: UserCommand
2025-08-19 16:06:48.6618250 UTC: D:\etmbms\vsprojects\profcppbook\ch31.ixx(78): __cdecl ch31::exercises::ex4::log::log<const char(&)[15],unsigned __int64&,const char(&)[3],class ch31::exercises::ex4::UserCommand&>(const char (&)[15],unsigned __int64 &,const char (&)[3],class ch31::exercises::ex4::UserCommand &): retrieved cmd 52: UserCommand
2025-08-19 16:06:48.6622795 UTC: D:\etmbms\vsprojects\profcppbook\ch31.ixx(78): __cdecl ch31::exercises::ex4::log::log<const char(&)[15],unsigned __int64&,const char(&)[3],class ch31::exercises::ex4::UserCommand&>(const char (&)[15],unsigned __int64 &,const char (&)[3],class ch31::exercises::ex4::UserCommand &): retrieved cmd 53: UserCommand
2025-08-19 16:06:48.6627389 UTC: D:\etmbms\vsprojects\profcppbook\ch31.ixx(78): __cdecl ch31::exercises::ex4::log::log<const char(&)[15],unsigned __int64&,const char(&)[3],class ch31::exercises::ex4::UserCommand&>(const char (&)[15],unsigned __int64 &,const char (&)[3],class ch31::exercises::ex4::UserCommand &): retrieved cmd 54: UserCommand
2025-08-19 16:06:48.6632092 UTC: D:\etmbms\vsprojects\profcppbook\ch31.ixx(78): __cdecl ch31::exercises::ex4::log::log<const char(&)[15],unsigned __int64&,const char(&)[3],class ch31::exercises::ex4::UserCommand&>(const char (&)[15],unsigned __int64 &,const char (&)[3],class ch31::exercises::ex4::UserCommand &): retrieved cmd 55: UserCommand
2025-08-19 16:06:48.6636626 UTC: D:\etmbms\vsprojects\profcppbook\ch31.ixx(78): __cdecl ch31::exercises::ex4::log::log<const char(&)[15],unsigned __int64&,const char(&)[3],class ch31::exercises::ex4::UserCommand&>(const char (&)[15],unsigned __int64 &,const char (&)[3],class ch31::exercises::ex4::UserCommand &): retrieved cmd 56: UserCommand
2025-08-19 16:06:48.6641177 UTC: D:\etmbms\vsprojects\profcppbook\ch31.ixx(78): __cdecl ch31::exercises::ex4::log::log<const char(&)[15],unsigned __int64&,const char(&)[3],class ch31::exercises::ex4::UserCommand&>(const char (&)[15],unsigned __int64 &,const char (&)[3],class ch31::exercises::ex4::UserCommand &): retrieved cmd 57: UserCommand
2025-08-19 16:06:48.6645971 UTC: D:\etmbms\vsprojects\profcppbook\ch31.ixx(78): __cdecl ch31::exercises::ex4::log::log<const char(&)[15],unsigned __int64&,const char(&)[3],class ch31::exercises::ex4::UserCommand&>(const char (&)[15],unsigned __int64 &,const char (&)[3],class ch31::exercises::ex4::UserCommand &): retrieved cmd 58: UserCommand
2025-08-19 16:06:48.6650554 UTC: D:\etmbms\vsprojects\profcppbook\ch31.ixx(78): __cdecl ch31::exercises::ex4::log::log<const char(&)[15],unsigned __int64&,const char(&)[3],class ch31::exercises::ex4::UserCommand&>(const char (&)[15],unsigned __int64 &,const char (&)[3],class ch31::exercises::ex4::UserCommand &): retrieved cmd 59: UserCommand
2025-08-19 16:06:48.6655138 UTC: D:\etmbms\vsprojects\profcppbook\ch31.ixx(78): __cdecl ch31::exercises::ex4::log::log<const char(&)[15],unsigned __int64&,const char(&)[3],class ch31::exercises::ex4::UserCommand&>(const char (&)[15],unsigned __int64 &,const char (&)[3],class ch31::exercises::ex4::UserCommand &): retrieved cmd 60: UserCommand
2025-08-19 16:06:48.6659586 UTC: D:\etmbms\vsprojects\profcppbook\ch31.ixx(78): __cdecl ch31::exercises::ex4::log::log<const char(&)[15],unsigned __int64&,const char(&)[3],class ch31::exercises::ex4::UserCommand&>(const char (&)[15],unsigned __int64 &,const char (&)[3],class ch31::exercises::ex4::UserCommand &): retrieved cmd 61: UserCommand
2025-08-19 16:06:48.6664101 UTC: D:\etmbms\vsprojects\profcppbook\ch31.ixx(78): __cdecl ch31::exercises::ex4::log::log<const char(&)[15],unsigned __int64&,const char(&)[3],class ch31::exercises::ex4::UserCommand&>(const char (&)[15],unsigned __int64 &,const char (&)[3],class ch31::exercises::ex4::UserCommand &): retrieved cmd 62: UserCommand
2025-08-19 16:06:48.6668668 UTC: D:\etmbms\vsprojects\profcppbook\ch31.ixx(78): __cdecl ch31::exercises::ex4::log::log<const char(&)[15],unsigned __int64&,const char(&)[3],class ch31::exercises::ex4::UserCommand&>(const char (&)[15],unsigned __int64 &,const char (&)[3],class ch31::exercises::ex4::UserCommand &): retrieved cmd 63: UserCommand
2025-08-19 16:06:48.6673198 UTC: D:\etmbms\vsprojects\profcppbook\ch31.ixx(78): __cdecl ch31::exercises::ex4::log::log<const char(&)[15],unsigned __int64&,const char(&)[3],class ch31::exercises::ex4::UserCommand&>(const char (&)[15],unsigned __int64 &,const char (&)[3],class ch31::exercises::ex4::UserCommand &): retrieved cmd 64: UserCommand
2025-08-19 16:06:48.6678017 UTC: D:\etmbms\vsprojects\profcppbook\ch31.ixx(78): __cdecl ch31::exercises::ex4::log::log<const char(&)[15],unsigned __int64&,const char(&)[3],class ch31::exercises::ex4::UserCommand&>(const char (&)[15],unsigned __int64 &,const char (&)[3],class ch31::exercises::ex4::UserCommand &): retrieved cmd 65: UserCommand
2025-08-19 16:06:48.6683242 UTC: D:\etmbms\vsprojects\profcppbook\ch31.ixx(78): __cdecl ch31::exercises::ex4::log::log<const char(&)[15],unsigned __int64&,const char(&)[3],class ch31::exercises::ex4::UserCommand&>(const char (&)[15],unsigned __int64 &,const char (&)[3],class ch31::exercises::ex4::UserCommand &): retrieved cmd 66: UserCommand
2025-08-19 16:06:48.6689440 UTC: D:\etmbms\vsprojects\profcppbook\ch31.ixx(78): __cdecl ch31::exercises::ex4::log::log<const char(&)[15],unsigned __int64&,const char(&)[3],class ch31::exercises::ex4::UserCommand&>(const char (&)[15],unsigned __int64 &,const char (&)[3],class ch31::exercises::ex4::UserCommand &): retrieved cmd 67: UserCommand
2025-08-19 16:06:48.6694915 UTC: D:\etmbms\vsprojects\profcppbook\ch31.ixx(78): __cdecl ch31::exercises::ex4::log::log<const char(&)[15],unsigned __int64&,const char(&)[3],class ch31::exercises::ex4::UserCommand&>(const char (&)[15],unsigned __int64 &,const char (&)[3],class ch31::exercises::ex4::UserCommand &): retrieved cmd 68: UserCommand
2025-08-19 16:06:48.6702301 UTC: D:\etmbms\vsprojects\profcppbook\ch31.ixx(78): __cdecl ch31::exercises::ex4::log::log<const char(&)[15],unsigned __int64&,const char(&)[3],class ch31::exercises::ex4::UserCommand&>(const char (&)[15],unsigned __int64 &,const char (&)[3],class ch31::exercises::ex4::UserCommand &): retrieved cmd 69: UserCommand