-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathmain.cpp
More file actions
1688 lines (1541 loc) · 43.2 KB
/
Copy pathmain.cpp
File metadata and controls
1688 lines (1541 loc) · 43.2 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
#include <iostream>
#include <bits/stdc++.h>
#include <string.h>
#include <cstring>
#include <ctime>
using namespace std;
int contorDeposit = 0;
int contorCredit = 0;
int contorClient = 0;
int contorBank = 0;
time_t now = time(0);
tm *ltm = localtime(&now);
int to_year = 1900 + ltm->tm_year;
int to_mon = 1 + ltm->tm_mon;
///TO DO:
///ADUNARI CLASE
class BankFunds;
class Deposit;
int pass_verification()
{
cout<<"Enter admin password: ";
string pass;
string try1 = "Y";
cin>>pass;
while(pass != "0000")
{
cout<<"Wrong password!"<<endl;
cout<<"Try again?"<<endl;
cout<<"(y/n): ";
cin>>try1;
if(try1 != "y" & try1 != "Y")
return 0;
system("CLS");
cout<<"Enter admin password: ";
cin>>pass;
}
return 1;
}
class Client
{
private:
static int idCounter;
const int clientId;
long clientSsn;
char *name;
string firstName;
char sex;
public:
///constructor
Client();
Client(const long clientSsn,char *name, string firstName,char sex);
Client(const Client& Obj);
Client& operator=(const Client & Obj);
///operator
bool operator==(const Client & Obj);///same client different id
operator string();///explicit firstName
Client operator +(char *a);///add a new name
friend Client operator+(char *a, Client);
bool operator<(const Client & Obj);///compare ids
bool operator>(const Client & Obj);
///friend functions
friend ostream& operator <<(ostream& out, const Client& c1);
friend istream& operator >>(istream& out, Client& c1);
///setters
void setIdCounter(int idCounter)
{
this->idCounter = idCounter;
}
void setFirstName(string firstName)
{
this->firstName = firstName;
}
void setClientSsn(long clientSsn)
{
this->clientSsn = clientSsn;
}
void setSex(char sex)
{
this->sex = sex;
}
void setName(char* name)
{
if(this->name!=NULL)
{
delete[] this->name;
this->name=NULL;
}
this->name=new char[strlen(name)+1];
strcpy(this->name, name);
}
///getters
int static getIdCounter();
const int getClientId()
{
return this->clientId;
}
long getClientSsn()
{
return this->clientSsn;
}
char getSex()
{
return this->sex;
}
char* getName()
{
return this->name;
}
string getFirstName()
{
return this->firstName;
}
///destructor
~Client()
{
if(this->name!=NULL)
{
delete[] this->name;
this->name=NULL;///de ce se face asta?
}
}
};
Client Client::operator +(char *a)
{
Client aux(*this) ;
int l = strlen(aux.name);
char aux2[l+1];
for (int i = 0; i < l; i++)
aux2[i] = aux.name[i];
aux2[l] = ' ';
if(aux.name != NULL)
delete[] aux.name;
aux.name = new char [strlen(a) + 1 + l];
for (int i = 0; i <=l; i++)
aux.name[i] = aux2[i];
for (int i = l+1; i <strlen(a) + l + 1; i++)
aux.name[i] = a[i-l-1];
return aux;
}
Client operator+(char *a, Client obj)
{
Client aux(obj) ;
int l = strlen(obj.name);
char aux2[l+1];
for (int i = 0; i < l; i++)
aux2[i] = obj.name[i];
aux2[l] = ' ';
if(aux.name != NULL)
delete[] aux.name;
aux.name = new char [strlen(a) + 1 + l];
for (int i = 0; i <=l; i++)
aux.name[i] = aux2[i];
for (int i = l+1; i <strlen(a) + l + 1; i++)
aux.name[i] = a[i-l-1];
return aux;
}
Client& Client::operator=(const Client& Obj)
{
if(this!=&Obj)
{
if(this->name!=NULL)
{
delete[] this->name;
this->name=NULL;
}
this->clientSsn=Obj.clientSsn;
this->name=new char[strlen(Obj.name)+1];
strcpy(this->name, Obj.name);
this->firstName=Obj.firstName;
this->sex=Obj.sex;
}
return *this;
}
Client::operator string()
{
return this->firstName;
}
bool Client::operator==(const Client& Obj)
{
if(this->clientSsn != Obj.clientSsn)
return false;
if(this->firstName != Obj.firstName)
return false;
if(this->sex != Obj.sex)
return false;
if(strlen(this->name)!=strlen(Obj.name))
return false;
for(int i = 0; i<strlen(name); i++)
if(this->name[i] != Obj.name[i])
return false;
if(this->clientId == Obj.clientId)
return false;
return true;
}
ostream& operator <<(ostream& out, const Client& c1)
{
out << "Client id: " << c1.clientId << endl;
out << "Client ssn: " << c1.clientSsn << endl;
out << "Client name: " << c1.name << endl;
out << "Client first name: " << c1.firstName << endl;
out << "Client sex: " << c1.sex << endl;
}
istream& operator >>(istream& in, Client& c1)
{
cout<<"Create your client acount."<<endl<<endl;
cout<<"Your ssn: ";
in >> c1.clientSsn;
cout<<"Your name:";
char aux[50];
in>>aux;
if (c1.name != NULL)
delete[] c1.name;
c1.name = new char[strlen(aux)+1];
strcpy(c1.name, aux);
cout<<"Your first name: ";
in >> c1.firstName;
cout<<"Your sex (M/F): ";
string aux2;
in >> aux2;
while(aux2 != "M" & aux2 !="F")
{
cout<<"Invalid input. Try again."<<endl;
cout<<"Your sex (M/F): ";
in >> aux2;
}
c1.sex = aux2[0];
return in;
}
int Client::idCounter=1000;
int Client::getIdCounter()
{
return Client::idCounter;
}
Client::Client():clientId(idCounter++)
{
clientSsn = 1000000000;
name = new char[strlen("ANONIM")+1];
strcpy(name, "ANONIM");// doar aloc spatiu
firstName = "ANONIM";
sex = 'x';
}
Client::Client(const long clientSsn,char *name, string firstName,char sex):clientId(idCounter++)
{
this->clientSsn=clientSsn;
this->name=new char[strlen(name)+1];
strcpy(this->name, name);
this->firstName = firstName;
this->sex=sex;
}
Client::Client(const Client& Obj):clientId(idCounter++)
{
this->clientSsn=Obj.clientSsn;
this->name=new char[strlen(Obj.name)+1];
strcpy(this->name, Obj.name);
this->firstName=Obj.firstName;
this->sex=Obj.sex;
}
bool Client::operator<(const Client &C)
{
if(this->clientId < C.clientId)
return true;
return false;
}
bool Client::operator>(const Client &C)
{
if(this->clientId > C.clientId)
return true;
return false;
}
class Deposit
{
private:
//static int depositIdCounter;
long clientSsn;
double interestRate;
long amount;
int year;
int month;
public:
///constructor
Deposit();
Deposit(long clientSsn, long amount, int year, int month);
Deposit(Deposit& Obj);
Deposit& operator=(const Deposit & Obj);
///operator
Deposit& operator--()
{
this->year -=1;
return *this;
}
Deposit operator--(int)
{
Deposit aux = *this;
operator--();
return aux;
}
Deposit& operator++()
{
this->year +=1;
return *this;
}
Deposit operator++(int)
{
Deposit aux = *this;
operator++();
return aux;
}
Deposit operator +(long a); ///add to amount
friend Deposit operator+(long a, Deposit);
friend BankFunds operator+(Deposit, BankFunds);
Deposit operator -(long a);
friend Deposit operator-(long a, Deposit);
operator int();///year*12+month
bool operator==(const Deposit & D);///same ssn, year, month
bool operator>(const Deposit & D);///compare the amount
bool operator<(const Deposit & D);
///friend functions
friend ostream& operator <<(ostream& out, const Deposit& d1);
friend istream& operator >>(istream& out, Deposit& d1);
///setters
void setClientSsn(long clientSsn)
{
this->clientSsn = clientSsn;
}
void setInterestRate(double interestRate)
{
this->interestRate = interestRate;
}
void setAmount(long amount)
{
this->amount = amount;
}
void setMonth(int month)
{
this->month = month;
}
void setYear(int year)
{
this->year = year;
}
///getters
int getClientSsn()
{
return this->clientSsn;
}
double getInterestRate()
{
return this->interestRate;
}
long getAmount()
{
return this->amount;
}
int getYear()
{
return this->year;
}
int getMonth()
{
return this->month;
}
};
bool Deposit::operator>(const Deposit & D)
{
if(this->amount <= D.amount)
return false;
return true;
}
bool Deposit::operator<(const Deposit & D)
{
if(this->amount >= D.amount)
return false;
return true;
}
bool Deposit::operator==(const Deposit & D)
{
if(this->clientSsn != D.clientSsn)
return false;
if(this->month != D.month)
return false;
if(this->year != D.year)
return false;
return true;
}
Deposit Deposit::operator +(long a)
{
Deposit aux(*this) ;
//aux = *this;
aux.amount+=a;
return aux;
}
Deposit operator+(long a, Deposit obj)
{
Deposit aux(obj);
aux.amount +=obj.amount;
return aux;
}
Deposit Deposit::operator -(long a)
{
Deposit aux(*this) ;
//aux = *this;
aux.amount-=a;
return aux;
}
Deposit operator-(long a, Deposit obj)
{
Deposit aux(obj);
aux.amount -=obj.amount;
return aux;
}
Deposit::operator int()
{
return this->year*12+this->month;
}
Deposit& Deposit::operator=(const Deposit& Obj)
{
if(this!=&Obj)
{
this-> clientSsn = Obj.clientSsn;
this-> interestRate = Obj.interestRate;
this->amount=Obj.amount;
this->year=Obj.year;
this->month=Obj.month;
}
return *this;
}
Deposit::Deposit(Deposit& Obj)
{
this->clientSsn = Obj.clientSsn;
this->interestRate = Obj.interestRate;
this->amount=Obj.amount;
this->year=Obj.year;
this->month=Obj.month;
}
Deposit::Deposit():clientSsn(1000000000)
{
interestRate = 0.0;
amount = 0;
year = 1970;
month = 1;
}
Deposit::Deposit(long clientSsn, long amount, int year, int month)
{
this->clientSsn = clientSsn;
this->amount = amount;
if(amount > 2000 & amount < 5000)
this->interestRate = 0.05;
if(amount > 0 & amount < 2001)
this->interestRate = 0.03;
if(amount > 4999)
this->interestRate = 0.07;
if(amount < 1)
this->interestRate = 0.0;
this->year = year;
this->month = month;
}
istream& operator >>(istream& in, Deposit& d1)
{
cout<<"Make a new deposit."<<endl<<endl;
cout<<"What is your ssn? ";
in >> d1.clientSsn;
cout<<"What is the amount you want to deposit? ";
in>> d1.amount;
cout<<"Year: ";
in >> d1.year;
cout<<"Month: ";
in >> d1.month;
return in; ///de ce se da return la in si la out nu????????????????????????
}
ostream& operator <<(ostream& out, const Deposit& d1)
{
out << "Your interest rate is: " << d1.interestRate << endl;
out << "The amount is: " << d1.amount << endl;
out << "Month and year of this deposit: " << d1.month << " "<< d1.year<< endl;
}
class Credits
{
private:
string name;
float percent;
bool available;
long maxAmount;
public:
///constructor
Credits();
Credits(string name, float percent, bool available, long maxAmount);
Credits(const Credits& Obj);
Credits& operator=(const Credits & Obj);
///operator
Credits& operator--()
{
this->percent -=0.1;
return *this;
}
Credits operator--(int)
{
Credits aux = *this;
operator--();
return aux;
}
Credits& operator++()
{
this->percent +=0.1;
return *this;
}
Credits operator++(int)
{
Credits aux = *this;
operator++();
return aux;
}
Credits operator +(long a);///add to maxAmount
friend Credits operator+(long a, Credits);
Credits operator -(long a);
friend Credits operator-(long a, Credits);
operator string()///name
{
return this->name;
}
bool operator==(const Credits & Obj);///same credit, different name
bool operator>(const Credits & Obj);///for maxAmount
bool operator<(const Credits & Obj);
//operator+=(int a){setMaxAmount(getMaxAmount()+a);}
//friend Credits operator+(Credits l, const Credits& r){l =l + r; return l;}
friend ostream& operator <<(ostream& out, const Credits& c1);
friend istream& operator >>(istream& out, Credits& c1);
///set
void setName(string name)
{
this->name = name;
}
void setPercent(float percent)
{
this->percent = percent;
}
void setAvailable(bool available)
{
this->available = available;
}
void setMaxAmount(long maxAmount)
{
this->maxAmount = maxAmount;
}
///get
string getName()
{
return this->name;
}
float getPercent()
{
return this->percent;
}
bool getAvailable()
{
return this->available;
}
long getMaxAmount()
{
return this->maxAmount;
}
};
Credits::Credits()
{
name = "NO NAME";
percent = 0.0;
available = false;
maxAmount = 0;
}
Credits::Credits(string name, float percent, bool available, long maxAmount)
{
this->name = name;
this->percent = percent;
this->available = available;
this->maxAmount = maxAmount;
}
Credits& Credits::operator=(const Credits& Obj)
{
if(this!=&Obj)
{
this->name=Obj.name;
this->percent=Obj.percent;
this->available=Obj.available;
this->maxAmount=Obj.maxAmount;
}
return *this;
}
Credits::Credits(const Credits& Obj)
{
this->name=Obj.name;
this->percent=Obj.percent;
this->available=Obj.available;
this->maxAmount=Obj.maxAmount;
}
istream& operator >>(istream& in, Credits& c1)
{
cout<<"Create a new credit type."<<endl<<endl;
cout<<"The name of the credit: ";
in >> c1.name;
cout<<"The percent: ";
in>> c1.percent;
cout<<"Is it available? ";
in >> c1.available;
cout<<"What is the max amount? ";
in >> c1.maxAmount;
return in; ///de ce se da return la in si la out nu????????????????????????
}
ostream& operator <<(ostream& out, const Credits& c1)
{
out << "The name of the credit: " << c1.name << endl;
out << "The percent: " << c1.percent << "%" << endl;
if(c1.available == 1)
out << "Available"<< endl;
else
out<< "Not available" <<endl;
out << "The max amount for this credit is: " << c1.maxAmount << endl;
}
Credits Credits::operator +(long a)
{
Credits aux(*this) ;
//aux = *this;
aux.maxAmount += a;
return aux;
}
bool Credits::operator==(const Credits & C)
{
if(this->percent != C.percent)
return false;
if(this->available != C.available)
return false;
if(this->maxAmount != C.maxAmount)
return false;
return true;
}
Credits operator+(long a, Credits obj)
{
Credits aux(obj);
aux.maxAmount +=a;
return aux;
}
Credits Credits::operator -(long a)
{
Credits aux(*this) ;
//aux = *this;
aux.maxAmount -= a;
return aux;
}
Credits operator-(long a, Credits obj)
{
Credits aux(obj);
aux.maxAmount -=a;
return aux;
}
bool Credits::operator<(const Credits & C)
{
if(this->maxAmount >= C.maxAmount)
return false;
return true;
}
bool Credits::operator>(const Credits & C)
{
if(this->maxAmount <= C.maxAmount)
return false;
return true;
}
class BankFunds
{
private:
string currency;
long availableAmount;
long transactions;
long* transactionHistory;
bool profit;
public:
///constructor
BankFunds();
BankFunds(string currency, long availableAmount, long transactions, long* transactionHistory);
BankFunds(const BankFunds& Obj);
BankFunds& operator=(const BankFunds & Obj);
///operator
BankFunds operator +(long a);
friend BankFunds operator+(long a, BankFunds);///a transaction with +
BankFunds operator+(Deposit);
BankFunds operator -(long a);
friend BankFunds operator-(long a, BankFunds);///a transaction with -
bool operator==(const BankFunds & B);///same currency
bool operator<(const BankFunds & B);///availableAmount
bool operator>(const BankFunds & B);
long operator[](long a);///index of transaction
operator string();///explicit
operator long() const;///implicit
///friend functions
friend ostream& operator <<(ostream& out, const BankFunds& b1);
friend istream& operator >>(istream& out, BankFunds& b1);
///setter
void setCurrency(string currency)
{
this->currency = currency;
}
void setAvailableAmount(long availableAmount)
{
this->availableAmount = availableAmount;
}
void setTransactions(long transactions)
{
this->transactions = transactions;
}
void setProfit(bool profit)
{
this->profit = profit;
}
void setTransactionHistory(long* transactionHistory, long transactions)
{
if(this->transactionHistory!=NULL)
{
delete[] this->transactionHistory;
this->transactionHistory=NULL;
}
this->transactionHistory=new long[transactions];
for(long i = 0; i < transactions; i++)
this->transactionHistory[i] = transactionHistory[i];
}
///getter
string getCurrency()
{
return this->currency;
}
long getAvailableAmount()
{
return this->availableAmount;
}
long getTransactions()
{
return this->transactions;
}
bool getProfit()
{
return this->profit;
}
const long* getTransactionHistory()
{
return this->transactionHistory;
}
///destructor
~BankFunds()
{
if(this->transactionHistory!=NULL)
{
delete[] this->transactionHistory;
this->transactionHistory=NULL;
}
}
};
BankFunds::BankFunds()
{
currency = "NONE";
availableAmount = 0;
transactions = 0;
transactionHistory = 0;
profit = false;
}
BankFunds::BankFunds(const BankFunds& Obj)
{
this->currency=Obj.currency;
this->availableAmount=Obj.availableAmount;
this->transactions=Obj.transactions;
this->profit=Obj.profit;
this->transactionHistory = new long [Obj.transactions];
for(int i =0; i<Obj.transactions; i++)
this->transactionHistory[i] = transactionHistory[i];
}
BankFunds::BankFunds(string currency, long availableAmount,long transactions, long* transactionHistory)
{
this->currency = currency;
this->availableAmount = availableAmount;
this->transactions = transactions;
this->transactionHistory = new long[transactions];
for(long i = 0; i < transactions; i++)
this->transactionHistory[i] = transactionHistory[i];
if(availableAmount > 0)
this->profit = true;
}
BankFunds& BankFunds::operator=(const BankFunds& Obj)
{
if(this!=&Obj)
{
if(this->transactionHistory!=NULL)
{
delete[] this->transactionHistory;
this->transactionHistory = NULL;
}
this->currency = Obj.currency;
this->availableAmount = Obj.availableAmount;
this->transactions = Obj.transactions;
this->transactionHistory = new long[Obj.transactions];
for(long i = 0; i <= Obj.transactions; i++)
this->transactionHistory[i] = Obj.transactionHistory[i];
this->profit = Obj.profit;
}
}
istream& operator >>(istream& in, BankFunds& b1)
{
cout<<"Create a bank account."<<endl<<endl;
cout<<"The currency: ";
in >> b1.currency;
cout<<"The available amount: ";
in>> b1.availableAmount;
cout<<"If there is a transaction history, please specify how many transactions have been made: ";
in >> b1.transactions;
if (b1.transactionHistory != NULL)
delete[] b1.transactionHistory;
b1.transactionHistory = new long[b1.transactions];
if (b1.transactions > 0)
{
cout<<"For every transaction specify the amount: "<<endl;
for(int i = 0; i<b1.transactions; i++)
{
cout<<"Transaction "<<i+1<<" out of "<<b1.transactions<<":";
in >> b1.transactionHistory[i];
}
}
return in;
}
ostream& operator <<(ostream& out, const BankFunds& b1)
{
out << "The currency: " << b1.currency << endl;
out << "Current available amount: " << b1.availableAmount << endl;
out << "How many transactions have been made: " << b1.transactions << endl;
if (b1.transactions > 0)
{
out << "Transation history: "<<endl<<endl;
for(int i = 0; i < b1.transactions; i++)
cout<<"Tr. #"<<i+1<<": "<<b1.transactionHistory[i]<<endl;
}
if(b1.profit == true)
out << "There is profit.";
else
out << "There is no profit.";
}
BankFunds BankFunds::operator -(long a)
{
BankFunds aux(*this) ;
//aux = *this;
if(aux.transactionHistory != NULL)
delete[] aux.transactionHistory;
aux.transactionHistory = new long [aux.transactions + 1];
for (long i = 0; i <this->transactions; i++)
aux.transactionHistory[i] = this->transactionHistory[i];
aux.transactionHistory[this->transactions] = -a;
aux.transactions++;
aux.availableAmount-=aux.transactionHistory[transactions];
if(aux.availableAmount > 0)
aux.profit = true;
else
aux.profit = false;
return aux;
}
BankFunds operator-(long a, BankFunds obj)
{
BankFunds aux(obj);
if(aux.transactionHistory != NULL)
delete[] aux.transactionHistory;
aux.transactionHistory = new long [aux.transactions + 1];
for (long i = 0; i < obj.transactions; i++)
aux.transactionHistory[i] = obj.transactionHistory[i];
aux.transactionHistory[obj.transactions] = -a;
aux.transactions++;
aux.availableAmount-=aux.transactionHistory[aux.transactions];
if(aux.availableAmount > 0)
aux.profit = true;
else
aux.profit = false;
return aux;
}
BankFunds BankFunds::operator +(long a)
{
BankFunds aux(*this) ;
//aux = *this;
if(aux.transactionHistory != NULL)
delete[] aux.transactionHistory;
aux.transactionHistory = new long [aux.transactions + 1];
for (long i = 0; i <this->transactions; i++)
aux.transactionHistory[i] = this->transactionHistory[i];
aux.transactionHistory[this->transactions] = a;
aux.transactions++;
aux.availableAmount+=aux.transactionHistory[transactions];
if(aux.availableAmount > 0)
aux.profit = true;
else
aux.profit = false;
return aux;
}
BankFunds operator+(long a, BankFunds obj)
{
BankFunds aux(obj);
if(aux.transactionHistory != NULL)
delete[] aux.transactionHistory;
aux.transactionHistory = new long [aux.transactions + 1];
for (long i = 0; i < obj.transactions; i++)
aux.transactionHistory[i] = obj.transactionHistory[i];
aux.transactionHistory[obj.transactions] = a;
aux.transactions++;
aux.availableAmount+=aux.transactionHistory[aux.transactions];
if(aux.availableAmount > 0)
aux.profit = true;
else
aux.profit = false;
return aux;
}
bool BankFunds::operator==(const BankFunds &B)
{
if(this->currency == B.currency)
return true;
return false;
}
bool BankFunds::operator<(const BankFunds &B)
{
if(this->availableAmount < B.availableAmount)