This commit is contained in:
2024-08-07 09:16:27 -04:00
parent fdfadd5c7e
commit 5f971cf684
5200 changed files with 731717 additions and 0 deletions

32
Histogram/Graph3D.hpp Normal file
View File

@@ -0,0 +1,32 @@
#ifndef _HISTOGRAM_GRAPH3D_HPP_
#define _HISTOGRAM_GRAPH3D_HPP_
#ifndef _COMMON_WINDOWS_HPP_
#include <common/windows.hpp>
#endif
#ifndef _COMMON_SMARTPOINTER_HPP_
#include <common/pointer.hpp>
#endif
#ifndef _ENGINE_DIB3D_HPP_
#include <engine/dib3d.hpp>
#endif
class Graph3D : public DIB3D
{
public:
Graph3D(GUIWindow &someGUIWindow);
Graph3D(GUIWindow &someGUIWindow,PurePalette &purePalette);
virtual ~Graph3D();
protected:
WORD viewPortWidth(void)const;
WORD viewPortHeight(void)const;
private:
Graph3D &operator=(const Graph3D &someGraph3D);
SmartPointer<GUIWindow> mGUIWindow;
};
inline
Graph3D &Graph3D::operator=(const Graph3D &/*someGraph3D*/)
{ // private implementation
return *this;
}
#endif