]> git.jsancho.org Git - lugaru.git/blobdiff - Source/Utils/Folders.cpp
Rename all C++ headers with .hpp extension
[lugaru.git] / Source / Utils / Folders.cpp
index b667daa933a5d22bc59b1779ea086550d70ad9d6..e2956e55db6c72c49d0d60c9f8dea9d2fd0a8833 100644 (file)
@@ -18,17 +18,20 @@ You should have received a copy of the GNU General Public License
 along with Lugaru.  If not, see <http://www.gnu.org/licenses/>.
 */
 
-#include "Folders.h"
+#include "Folders.hpp"
+
 #include <cstring>
 #include <unistd.h>
+
 #if PLATFORM_UNIX
+#include <pwd.h>
 #include <sys/stat.h>
 #include <sys/types.h>
-#include <pwd.h>
 #endif
+
 #if _WIN32
-#include <windows.h>
 #include <shlobj.h> // to get paths related functions
+#include <windows.h>
 #endif
 
 const std::string Folders::dataDir = DATA_DIR;