Fixed the god-awful indentation

This commit is contained in:
mathusummut
2018-05-06 00:01:36 +02:00
parent 643e3820f5
commit 35b7b1f1a6
459 changed files with 204893 additions and 217545 deletions

View File

@@ -20,23 +20,25 @@
#include "pixmap.h"
#include "leak_dumper.h"
namespace Shared{ namespace Graphics{
namespace Shared {
namespace Graphics {
class PNGReader: FileReader<Pixmap2D> {
public:
PNGReader();
class PNGReader : FileReader<Pixmap2D> {
public:
PNGReader();
Pixmap2D* read(ifstream& in, const string& path, Pixmap2D* ret) const;
};
Pixmap2D* read(ifstream& in, const string& path, Pixmap2D* ret) const;
};
class PNGReader3D: FileReader<Pixmap3D> {
public:
PNGReader3D();
class PNGReader3D : FileReader<Pixmap3D> {
public:
PNGReader3D();
Pixmap3D* read(ifstream& in, const string& path, Pixmap3D* ret) const;
};
Pixmap3D* read(ifstream& in, const string& path, Pixmap3D* ret) const;
};
}} //end namespace
}
} //end namespace
#endif