Include file cleanup

This commit is contained in:
Alexander Bock
2016-06-27 15:02:21 +02:00
parent a25eb0f690
commit 824da2199f
4 changed files with 8 additions and 5 deletions

View File

@@ -47,8 +47,8 @@
#ifndef WIN32_LEAN_AND_MEAN
#define WIN32_LEAN_AND_MEAN
#endif
#include <windows.h>
#include <winsock2.h>
#include <windows.h>
#include <ws2tcpip.h>
#endif

View File

@@ -29,7 +29,7 @@
// open space includes
#include <openspace/util/powerscaledcoordinate.h>
#include <openspace/util/syncbuffer.h>
//#include <openspace/util/syncbuffer.h>
#include <openspace/rendering/renderengine.h>
// glm includes
@@ -39,6 +39,8 @@
#include <glm/gtc/quaternion.hpp>
namespace openspace {
class SyncBuffer;
/**
This class still needs some more love. Suggested improvements:
- Remove psc from the camera class interface.

View File

@@ -42,9 +42,9 @@ public:
PowerScaledScalar(float f1, float f2);
static PowerScaledScalar CreatePSS(double d1);
const glm::vec2& vec2() const;
float lengthf() const;
double lengthd() const;
const glm::vec2& vec2() const;
float lengthf() const;
double lengthd() const;
// operator overloading

View File

@@ -27,6 +27,7 @@
#include <vector>
#include <ghoul/opengl/ghoul_gl.h>
#include <sgct.h>
#include <stdint.h>