mirror of
https://github.com/OpenSpace/OpenSpace.git
synced 2026-04-23 20:50:59 -05:00
Clean include guards in OpenSpace core
Remove unused files
This commit is contained in:
@@ -22,15 +22,15 @@
|
||||
* OR THE USE OR OTHER DEALINGS IN THE SOFTWARE. *
|
||||
****************************************************************************************/
|
||||
|
||||
#ifndef __HISTOGRAM_H__
|
||||
#define __HISTOGRAM_H__
|
||||
#ifndef __OPENSPACE_CORE___HISTOGRAM___H__
|
||||
#define __OPENSPACE_CORE___HISTOGRAM___H__
|
||||
|
||||
#include <vector>
|
||||
#include <iostream>
|
||||
|
||||
namespace openspace {
|
||||
class Histogram {
|
||||
|
||||
class Histogram {
|
||||
public:
|
||||
Histogram();
|
||||
Histogram(float minValue, float maxValue, int numBins);
|
||||
@@ -86,7 +86,8 @@ private:
|
||||
std::vector<float> _equalizer;
|
||||
int _numValues;
|
||||
|
||||
}; // class Histogram
|
||||
};
|
||||
|
||||
} // namespace openspace
|
||||
|
||||
#endif //__HISTOGRAM_H__
|
||||
#endif //__OPENSPACE_CORE___HISTOGRAM___H__
|
||||
|
||||
Reference in New Issue
Block a user