consolidate all repos to one for archive

This commit is contained in:
2025-01-28 13:46:42 +01:00
commit a6610fbc7a
5350 changed files with 2705721 additions and 0 deletions

View File

@@ -0,0 +1,18 @@
#include "Invoice.h"
int main() {
Article *artikel1 = new Article("Habotov tic", "1223", 25.69);
Article *artikel2 = new WeighableArticle("Golobov tic", "2233", 2.33, 0.9);
Invoice *racun1 = new Invoice("Tici d.o.o");
artikel1->setQuantity(7);
racun1->addArticle(artikel1);
racun1->addArticle(artikel2);
racun1->print();
Article *artikel3 = new Article("Ficotov tic", "1223", 50000.12);
Article *artikel4 = new WeighableArticle("rajzmanov tic", "2234", 98.8, 15);
Invoice *racun2 = new Invoice("Novi Tici d.o.o");
racun2->addArticle(artikel3);
racun2->addArticle(artikel4);
racun2->print();
return 0;
}