first commit

This commit is contained in:
2019-05-31 11:26:35 -04:00
commit c403ba19f7
5075 changed files with 965209 additions and 0 deletions
+20
View File
@@ -0,0 +1,20 @@
#ifndef __EXCEPTIONS_H__
#define __EXCEPTIONS_H__
#include "vars.h"
class bad_parameter{
public:
bad_parameter( CVars &out, const char *name );
};
class err : public std::exception
{
public:
err( char *msg );
};
#endif