]> SALOME platform Git repositories - modules/gui.git/commitdiff
Salome HOME
#pragma warning( disable:4251 )
authorsln <sln@opencascade.com>
Mon, 30 Oct 2006 14:35:30 +0000 (14:35 +0000)
committersln <sln@opencascade.com>
Mon, 30 Oct 2006 14:35:30 +0000 (14:35 +0000)
src/LightApp/LightApp_DataOwner.h

index 989e30c730ca586f6e675b7f5184d861f6b006ef..61587cf5e0e2ffb5eae81c36824029e828c01d64 100644 (file)
 
 class LightApp_DataObject;
 
+#ifdef WIN32
+#pragma warning( disable:4251 )
+#endif
+
 /*!
   This class provide data owner objects.
 */
+
 class LIGHTAPP_EXPORT LightApp_DataOwner : public SUIT_DataOwner
 {
 public:
@@ -59,4 +64,8 @@ private:
 
 typedef SMART(LightApp_DataOwner) LightApp_DataOwnerPtr;
 
+#ifdef WIN32
+#pragma warning( default:4251 )
+#endif
+
 #endif