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

44
Lab5/except.h Normal file
View File

@@ -0,0 +1,44 @@
//##################################################################
// LAB 5
// ADVANCED PROGRAMMING IN C++
// MATRIX/ARRAY WITH TRY-CATCH
//==================================================================
// except.h
// CLASS IMPLEMENTATION AND DEFINITION FOR
// ALL ERRORS
// Christian Ohlsson
// Daniel Alfredsson
// Karlstad 990927
//==================================================================
#ifndef _EXCEPT_H_
#define _EXCEPT_H_
#include <iostream.h>
class Error{
public:
virtual void Print() = 0;
};