X-Git-Url: http://info.iut-bm.univ-fcomte.fr/pub/gitweb/simgrid.git/blobdiff_plain/9b1ec3c5445076d8f5827f850a9a5e9ea4853696..d9f6a4409b58ac98618a4b646af874f06ceac856:/src/cxx/MsgException.cxx diff --git a/src/cxx/MsgException.cxx b/src/cxx/MsgException.cxx index 5b9bd4645e..25c1ab2644 100644 --- a/src/cxx/MsgException.cxx +++ b/src/cxx/MsgException.cxx @@ -1,61 +1,74 @@ -#include "MsgException.hpp" - -#include -#include -#include - -using namespace std; - -namespace SimGrid -{ - namespace Msg - { - - MsgException::MsgException() - { - this->reason = (char*) calloc(strlen("Internal exception : unknown reason") + 1, sizeof(char)); - strcpy(this->reason, "Internal exception : unknown reason"); - } - - - MsgException::MsgException(const MsgException& rMsgException) - { - const char* reason = rMsgException.toString(); - this->reason = (char*) calloc(strlen(reason) + 1, sizeof(char)); - strcpy(this->reason, reason); - - } - - MsgException::MsgException(const char* reason) - { - this->reason = (char*) calloc(strlen("Internal exception : ") + strlen(reason) + 1, sizeof(char)); - sprintf(this->reason, "Invalid exception : %s", reason); - } - - - MsgException::~MsgException() - { - if(this->reason) - free(this->reason); - } - - const char* MsgException::toString(void) const - { - return (const char*)(this->reason); - } - - - const MsgException& MsgException::operator = (const MsgException& rMsgException) - { - const char* reason = rMsgException.toString(); - this->reason = (char*) calloc(strlen(reason) + 1, sizeof(char)); - - return *this; - } - - } // namespace Msg - -}// namespace SimGrid - - - +/* + * MsgException.cxx + * + * Copyright 2006,2007 Martin Quinson, Malek Cherier + * All right reserved. + * + * This program is free software; you can redistribute + * it and/or modify it under the terms of the license + *(GNU LGPL) which comes with this package. + * + */ + + /* MsgException member functions implementation. + */ + +#include + +#include +#include +#include + +namespace SimGrid +{ + namespace Msg + { + + MsgException::MsgException() + { + this->reason = (char*) calloc(strlen("Internal exception : unknown reason") + 1, sizeof(char)); + strcpy(this->reason, "Internal exception : unknown reason"); + } + + + MsgException::MsgException(const MsgException& rMsgException) + { + const char* reason = rMsgException.toString(); + this->reason = (char*) calloc(strlen(reason) + 1, sizeof(char)); + strcpy(this->reason, reason); + + } + + MsgException::MsgException(const char* reason) + { + this->reason = (char*) calloc(strlen("Internal exception : ") + strlen(reason) + 1, sizeof(char)); + sprintf(this->reason, "Invalid exception : %s", reason); + } + + + MsgException::~MsgException() + { + if(this->reason) + free(this->reason); + } + + const char* MsgException::toString(void) const + { + return (const char*)(this->reason); + } + + + const MsgException& MsgException::operator = (const MsgException& rMsgException) + { + const char* reason = rMsgException.toString(); + this->reason = (char*) calloc(strlen(reason) + 1, sizeof(char)); + + return *this; + } + + } // namespace Msg + +}// namespace SimGrid + + +