glife: Rename *.hpp to *.h
This commit is contained in:
parent
9339eb2063
commit
3c94b5cb05
@ -12,8 +12,8 @@
|
||||
#include <StringView.h>
|
||||
#include <View.h>
|
||||
|
||||
#include "GLifeState.hpp"
|
||||
#include "GLifeConfig.hpp"
|
||||
#include "GLifeState.h"
|
||||
#include "GLifeConfig.h"
|
||||
|
||||
|
||||
// ------------------------------------------------------
|
||||
|
@ -5,14 +5,14 @@
|
||||
* Authors:
|
||||
* Aaron Hill <serac@hillvisions.com>
|
||||
*/
|
||||
#ifndef _GLIFE_GLIFECONFIG_HPP
|
||||
#define _GLIFE_GLIFECONFIG_HPP
|
||||
#ifndef _GLIFE_GLIFECONFIG_H
|
||||
#define _GLIFE_GLIFECONFIG_H
|
||||
|
||||
|
||||
#include <Slider.h>
|
||||
#include <View.h>
|
||||
|
||||
#include "GLifeState.hpp"
|
||||
#include "GLifeState.h"
|
||||
|
||||
|
||||
// Message IDs
|
||||
@ -42,4 +42,4 @@ public:
|
||||
void MessageReceived( BMessage* );
|
||||
};
|
||||
|
||||
#endif /* _GLIFE_GLIFECONFIG_HPP */
|
||||
#endif /* _GLIFE_GLIFECONFIG_H */
|
@ -11,7 +11,7 @@
|
||||
#include <stdlib.h>
|
||||
#include <SupportDefs.h>
|
||||
|
||||
#include "GLifeGrid.hpp"
|
||||
#include "GLifeGrid.h"
|
||||
|
||||
|
||||
// ------------------------------------------------------
|
||||
@ -83,4 +83,4 @@ bool GLifeGrid::Occupied( int32 iRow, int32 iColumn )
|
||||
while( iNewRow < 0 ) iNewRow += m_iHeight;
|
||||
while( iNewColumn < 0 ) iNewColumn += m_iWidth;
|
||||
return m_pbGrid[ ( iNewRow * m_iWidth ) + iNewColumn ];
|
||||
}
|
||||
}
|
||||
|
@ -5,8 +5,8 @@
|
||||
* Authors:
|
||||
* Aaron Hill <serac@hillvisions.com>
|
||||
*/
|
||||
#ifndef _GLIFE_GLIFEGRID_HPP
|
||||
#define _GLIFE_GLIFEGRID_HPP
|
||||
#ifndef _GLIFE_GLIFEGRID_H
|
||||
#define _GLIFE_GLIFEGRID_H
|
||||
|
||||
|
||||
// GLifeGrid Class Declaration
|
||||
@ -29,4 +29,4 @@ public:
|
||||
bool Occupied( int32, int32 );
|
||||
};
|
||||
|
||||
#endif /* _GLIFE_GLIFEGRID_HPP */
|
||||
#endif /* _GLIFE_GLIFEGRID_H */
|
@ -13,11 +13,11 @@
|
||||
#include <ScreenSaver.h>
|
||||
#include <View.h>
|
||||
|
||||
#include "GLifeGrid.hpp"
|
||||
#include "GLifeState.hpp"
|
||||
#include "GLifeConfig.hpp"
|
||||
#include "GLifeView.hpp"
|
||||
#include "GLifeSaver.hpp"
|
||||
#include "GLifeGrid.h"
|
||||
#include "GLifeState.h"
|
||||
#include "GLifeConfig.h"
|
||||
#include "GLifeView.h"
|
||||
#include "GLifeSaver.h"
|
||||
|
||||
// ------------------------------------------------------
|
||||
// GLifeSaver Class Constructor Definition
|
||||
|
@ -5,8 +5,8 @@
|
||||
* Authors:
|
||||
* Aaron Hill <serac@hillvisions.com>
|
||||
*/
|
||||
#ifndef _GLIFE_GLIFESAVER_HPP
|
||||
#define _GLIFE_GLIFESAVER_HPP
|
||||
#ifndef _GLIFE_GLIFESAVER_H
|
||||
#define _GLIFE_GLIFESAVER_H
|
||||
|
||||
|
||||
// Required Includes
|
||||
@ -45,4 +45,4 @@ public:
|
||||
};
|
||||
|
||||
|
||||
#endif /* _GLIFE_GLIFESAVER_HPP */
|
||||
#endif /* _GLIFE_GLIFESAVER_H */
|
@ -5,8 +5,8 @@
|
||||
* Authors:
|
||||
* Aaron Hill <serac@hillvisions.com>
|
||||
*/
|
||||
#ifndef _GLIFE_GLIFESTATE_HPP
|
||||
#define _GLIFE_GLIFESTATE_HPP
|
||||
#ifndef _GLIFE_GLIFESTATE_H
|
||||
#define _GLIFE_GLIFESTATE_H
|
||||
|
||||
|
||||
// Constants
|
||||
@ -60,4 +60,4 @@ public:
|
||||
};
|
||||
|
||||
|
||||
#endif /* _GLIFE_GLIFESTATE_HPP */
|
||||
#endif /* _GLIFE_GLIFESTATE_H */
|
@ -12,9 +12,9 @@
|
||||
#include <GL/glu.h>
|
||||
#include <GLView.h>
|
||||
|
||||
#include "GLifeGrid.hpp"
|
||||
#include "GLifeState.hpp"
|
||||
#include "GLifeView.hpp"
|
||||
#include "GLifeGrid.h"
|
||||
#include "GLifeState.h"
|
||||
#include "GLifeView.h"
|
||||
|
||||
|
||||
// ------------------------------------------------------
|
||||
|
@ -5,12 +5,12 @@
|
||||
* Authors:
|
||||
* Aaron Hill <serac@hillvisions.com>
|
||||
*/
|
||||
#ifndef _GLIFE_GLIFEVIEW_HPP
|
||||
#define _GLIFE_GLIFEVIEW_HPP
|
||||
#ifndef _GLIFE_GLIFEVIEW_H
|
||||
#define _GLIFE_GLIFEVIEW_H
|
||||
|
||||
|
||||
#include <GLView.h>
|
||||
#include "GLifeState.hpp"
|
||||
#include "GLifeState.h"
|
||||
|
||||
|
||||
// GLifeView Class Declaration
|
||||
@ -33,4 +33,4 @@ private:
|
||||
int32 m_iStep;
|
||||
};
|
||||
|
||||
#endif /* _GLIFE_GLIFEVIEW_HPP */
|
||||
#endif /* _GLIFE_GLIFEVIEW_H */
|
Loading…
Reference in New Issue
Block a user