Started switching OpenSpace projects to nested namespaces

Various cleanups
This commit is contained in:
Alexander Bock
2017-07-15 20:01:55 -04:00
parent 9d4215695d
commit 4dba552fd1
331 changed files with 1126 additions and 1917 deletions
@@ -1,4 +1,4 @@
/*****************************************************************************************
/*****************************************************************************************
* *
* OpenSpace *
* *
@@ -31,14 +31,12 @@
#include <string>
namespace openspace {
namespace globebrowsing {
namespace openspace::globebrowsing {
/**
* All information needed to create a texture used for a Tile.
*/
class TileTextureInitData
{
class TileTextureInitData {
public:
using HashKey = unsigned long long;
using ShouldAllocateDataOnCPU = ghoul::Boolean;
@@ -85,7 +83,6 @@ private:
bool _shouldAllocateDataOnCPU;
};
} // namespace globebrowsing
} // namespace openspace
} // namespace openspace::globebrowsing
#endif // __OPENSPACE_MODULE_GLOBEBROWSING___TILE_TEXTURE_INIT_DATA___H__