1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52
|
// This file is part of The New Aspell
// Copyright (C) 2001 by Kevin Atkinson under the GNU LGPL license
// version 2.0 or 2.1. You should have received a copy of the LGPL
// license along with this library if you did not you can find
// it at http://www.gnu.org/.
#include <string.h>
#include <stdlib.h>
#include "error.hpp"
namespace acommon {
bool Error::is_a(ErrorInfo const * to_find) const
{
const ErrorInfo * e = err;
while (e) {
if (e == to_find) return true;
e = e->isa;
}
return false;
}
Error::Error(const Error & other)
{
if (other.mesg) {
mesg = (char *)malloc(strlen(other.mesg) + 1);
strcpy(const_cast<char *>(mesg), other.mesg);
}
err = other.err;
}
Error & Error::operator=(const Error & other)
{
if (mesg)
free(const_cast<char *>(mesg));
if (other.mesg) {
unsigned int len = strlen(other.mesg) + 1;
mesg = (char *)malloc(len);
memcpy(const_cast<char *>(mesg), other.mesg, len);
}
err = other.err;
return *this;
}
Error::~Error()
{
if (mesg)
free(const_cast<char *>(mesg));
}
}
|