ahmed osama
Full Member level 6
- Joined
- Jul 18, 2004
- Messages
- 352
- Helped
- 2
- Reputation
- 4
- Reaction score
- 0
- Trophy points
- 1,296
- Location
- Cairo, Egypt, Egypt
- Activity points
- 2,652
If any one use VC++ for creating a new class ,will find some strange things written in the start of the file
// CEquParser.h: interface for the CEquParser class.
//
//////////////////////////////////////////////////////////////////////
#if !defined(AFX_CEQUPARSER_H__ACCB3DAE_4F18_4E1B_B084_CEF3AB97079A__INCLUDED_)
#define AFX_CEQUPARSER_H__ACCB3DAE_4F18_4E1B_B084_CEF3AB97079A__INCLUDED_
#if _MSC_VER > 1000
#pragma once
#endif // _MSC_VER > 1000
class CEquParser
{
public:
CEquParser();
virtual ~CEquParser();
};
#endif // !defined(AFX_CEQUPARSER_H__ACCB3DAE_4F18_4E1B_B084_CEF3AB97079A__INCLUDED_)
any one has idea what is that?? and Why
// CEquParser.h: interface for the CEquParser class.
//
//////////////////////////////////////////////////////////////////////
#if !defined(AFX_CEQUPARSER_H__ACCB3DAE_4F18_4E1B_B084_CEF3AB97079A__INCLUDED_)
#define AFX_CEQUPARSER_H__ACCB3DAE_4F18_4E1B_B084_CEF3AB97079A__INCLUDED_
#if _MSC_VER > 1000
#pragma once
#endif // _MSC_VER > 1000
class CEquParser
{
public:
CEquParser();
virtual ~CEquParser();
};
#endif // !defined(AFX_CEQUPARSER_H__ACCB3DAE_4F18_4E1B_B084_CEF3AB97079A__INCLUDED_)
any one has idea what is that?? and Why