From bbc222253e8c5ff10cb98bb40dfb460a8d11c071 Mon Sep 17 00:00:00 2001 From: sln Date: Mon, 30 Oct 2006 14:35:30 +0000 Subject: [PATCH] #pragma warning( disable:4251 ) --- src/LightApp/LightApp_DataOwner.h | 9 +++++++++ 1 file changed, 9 insertions(+) diff --git a/src/LightApp/LightApp_DataOwner.h b/src/LightApp/LightApp_DataOwner.h index 989e30c73..61587cf5e 100644 --- a/src/LightApp/LightApp_DataOwner.h +++ b/src/LightApp/LightApp_DataOwner.h @@ -29,9 +29,14 @@ 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 -- 2.39.2