first commit

This commit is contained in:
2026-03-05 13:16:26 +01:00
commit 1b2bf174e8
164 changed files with 35594 additions and 0 deletions

26
Lab2/contract.h Normal file
View File

@@ -0,0 +1,26 @@
//##################################################################
// LAB 2
// ADVANCED PROGRAMMING IN C++
// MATRIX/ARRAY WITH SHALLOW COPY
//==================================================================
// contract.h
// CLASS IMPLEMENTATION AND DEFINITION FOR
// THE CONTRACT
// Christian Ohlsson
// Daniel Alfredsson
// Karlstad 990907
//==================================================================
class Contract {
public:
int *buffer;
int size;
int owners;
Contract() {
size=0;