Minor fixes.

This commit is contained in:
Florian Pose
2008-07-24 08:15:44 +00:00
parent 721cc68fb2
commit 338bb8fb41

View File

@@ -4,8 +4,8 @@
*
****************************************************************************/
#ifndef __EC_MASTER_H__
#define __EC_MASTER_H__
#ifndef __MASTER_DEVICE_H__
#define __MASTER_DEVICE_H__
#include <stdexcept>
#include <sstream>
@@ -22,7 +22,7 @@ class MasterDeviceException:
friend class MasterDevice;
protected:
/** Constructor with std::string parameter. */
/** Constructor with stringstream parameter. */
MasterDeviceException(
const stringstream &s /**< Message. */
): runtime_error(s.str()) {}