summaryrefslogtreecommitdiffstats
path: root/c++/src/H5Exception.h
diff options
context:
space:
mode:
authorMuQun Yang <ymuqun@hdfgroup.org>2002-09-20 20:37:56 (GMT)
committerMuQun Yang <ymuqun@hdfgroup.org>2002-09-20 20:37:56 (GMT)
commitfcc1eea172460a11d4d5b08f7b820b7aa689df54 (patch)
tree067a9f3b4c4207026f8fdb341f00d4f993ced7d9 /c++/src/H5Exception.h
parente5b28ef37b6cb97211e37f0900a97b14c97daf57 (diff)
downloadhdf5-fcc1eea172460a11d4d5b08f7b820b7aa689df54.zip
hdf5-fcc1eea172460a11d4d5b08f7b820b7aa689df54.tar.gz
hdf5-fcc1eea172460a11d4d5b08f7b820b7aa689df54.tar.bz2
[svn-r5932]
Purpose: use H5_DLLCPP to replacer __DLLCPP__ for c++ interfaces. Description: Solution: Platforms tested: linux 2.2.18smp, IRIX64, solaris 2.7, windows 2000
Diffstat (limited to 'c++/src/H5Exception.h')
-rw-r--r--c++/src/H5Exception.h22
1 files changed, 11 insertions, 11 deletions
diff --git a/c++/src/H5Exception.h b/c++/src/H5Exception.h
index a5e0f91..15756a7 100644
--- a/c++/src/H5Exception.h
+++ b/c++/src/H5Exception.h
@@ -8,7 +8,7 @@ namespace H5 {
using namespace std;
#endif
-class __DLLCPP__ Exception {
+class H5_DLLCPP Exception {
public:
// Default constructor
Exception();
@@ -70,7 +70,7 @@ class __DLLCPP__ Exception {
string funcName;
};
-class __DLLCPP__ FileIException : public Exception {
+class H5_DLLCPP FileIException : public Exception {
public:
FileIException();
FileIException( const string& func_name, const string& message = NULL);
@@ -78,7 +78,7 @@ class __DLLCPP__ FileIException : public Exception {
virtual ~FileIException();
};
-class __DLLCPP__ GroupIException : public Exception {
+class H5_DLLCPP GroupIException : public Exception {
public:
GroupIException();
GroupIException( const string& func_name, const string& message=NULL);
@@ -86,7 +86,7 @@ class __DLLCPP__ GroupIException : public Exception {
virtual ~GroupIException();
};
-class __DLLCPP__ DataSpaceIException : public Exception {
+class H5_DLLCPP DataSpaceIException : public Exception {
public:
DataSpaceIException();
DataSpaceIException(const string& func_name, const string& message=NULL);
@@ -94,7 +94,7 @@ class __DLLCPP__ DataSpaceIException : public Exception {
virtual ~DataSpaceIException();
};
-class __DLLCPP__ DataTypeIException : public Exception {
+class H5_DLLCPP DataTypeIException : public Exception {
public:
DataTypeIException();
DataTypeIException(const string& func_name, const string& message = NULL);
@@ -102,7 +102,7 @@ class __DLLCPP__ DataTypeIException : public Exception {
virtual ~DataTypeIException();
};
-class __DLLCPP__ PropListIException : public Exception {
+class H5_DLLCPP PropListIException : public Exception {
public:
PropListIException();
PropListIException(const string& func_name, const string& message=NULL);
@@ -110,7 +110,7 @@ class __DLLCPP__ PropListIException : public Exception {
virtual ~PropListIException();
};
-class __DLLCPP__ DataSetIException : public Exception {
+class H5_DLLCPP DataSetIException : public Exception {
public:
DataSetIException();
DataSetIException(const string& func_name, const string& message=NULL);
@@ -118,7 +118,7 @@ class __DLLCPP__ DataSetIException : public Exception {
virtual ~DataSetIException();
};
-class __DLLCPP__ AttributeIException : public Exception {
+class H5_DLLCPP AttributeIException : public Exception {
public:
AttributeIException();
AttributeIException(const string& func_name, const string& message=NULL);
@@ -126,7 +126,7 @@ class __DLLCPP__ AttributeIException : public Exception {
virtual ~AttributeIException();
};
-class __DLLCPP__ ReferenceException : public Exception {
+class H5_DLLCPP ReferenceException : public Exception {
public:
ReferenceException();
ReferenceException(const string& func_name, const string& message=NULL);
@@ -134,7 +134,7 @@ class __DLLCPP__ ReferenceException : public Exception {
virtual ~ReferenceException();
};
-class __DLLCPP__ LibraryIException : public Exception {
+class H5_DLLCPP LibraryIException : public Exception {
public:
LibraryIException();
LibraryIException(const string& func_name, const string& message=NULL);
@@ -142,7 +142,7 @@ class __DLLCPP__ LibraryIException : public Exception {
virtual ~LibraryIException();
};
-class __DLLCPP__ IdComponentException : public Exception {
+class H5_DLLCPP IdComponentException : public Exception {
public:
IdComponentException();
IdComponentException(const string& func_name, const string& message=NULL);