first commit
This commit is contained in:
44
Lab5/except.h
Normal file
44
Lab5/except.h
Normal 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;
|
||||
|
||||
};
|
||||
|
||||
|
||||
|
||||
Reference in New Issue
Block a user