wxArt2D
gdserr.cpp
Go to the documentation of this file.
1 /*! \file gdsio/src/gdserr.cpp
2  \brief Holds an error message
3  \author Probably Klaas Holwerda
4 
5  Copyright: 2001-2004 (C) Probably Klaas Holwerda
6 
7  Licence: wxWidgets Licence
8 
9  RCS-ID: $Id: gdserr.cpp,v 1.8 2006/12/13 21:43:31 titato Exp $
10 */
11 
12 #include "a2dprec.h"
13 
14 #ifdef __BORLANDC__
15 #pragma hdrstop
16 #endif
17 
18 #ifndef WX_PRECOMP
19 #include "wx/wx.h"
20 #endif
21 
22 #include "wx/gdsio/gdserr.h"
23 
24 GDS_Error::GDS_Error( const wxString& message, const wxString& header )
25 {
26  m_message = message;
27  m_header = header;
28 }
29 
30 GDS_Error::GDS_Error( const GDS_Error& other )
31 {
32  m_message = other.m_message;
33  m_header = other.m_header;
34 }
35 
36 GDS_Error::~GDS_Error()
37 {
38 }
39 
40 
41 
42 
Holds an error message.
GDSII format input and output.
Definition: gdserr.h:23
gdserr.cpp Source File -- Sun Oct 12 2014 17:04:20 -- Sun Oct 12 2014 -- 1.8.5 -- wxArt2D -- . -- Main Page Reference Documentation