Finally, I found what I was looking for - here is the answer directly from MSDN http://msdn.microsoft.com/en-us/library/zyhb0b82.aspx (specification VS2010):
#include <codeanalysis\warnings.h>
#pragma warning( push )
#pragma warning ( disable : ALL_CODE_ANALYSIS_WARNINGS )
#include <third-party include files here>
#pragma warning( pop )
source
share