My Project
D:/source/c++/Programme/sally/sally/sallyAPI/BaseObject.h
Go to the documentation of this file.
00001 
00002 
00003 
00004 
00005 
00006 
00007 
00008 
00009 
00010 
00011 
00012 
00013 
00014 
00015 
00016 
00017 
00018 
00019 
00020 
00021 
00022 
00023 
00024 
00025 
00026 
00027 
00028 #pragma once
00029 #include "Define.h"
00030 
00031 namespace SallyAPI
00032 {
00033         namespace Core
00034         {
00043 
00044                 class DLL_API_SALLY CBaseObject
00045                 {
00046                 protected:
00047                         static float                            m_fWidthCorrection;
00048                         static float                            m_fHeightCorrection;
00049                         static float                            m_fDepthCorrection;
00050                 public:
00051                         CBaseObject();
00052                         virtual ~CBaseObject();
00053 
00054                         static void Init(float widthCorrection, float heightCorrection);
00055                 };
00056         }
00057 }
 All Classes Namespaces Files Functions Variables Typedefs Enumerations Enumerator Defines