X-Git-Url: http://review.tizen.org/git/?p=platform%2Fcore%2Fuifw%2Fdali-demo.git;a=blobdiff_plain;f=examples%2Ffpp-game%2Fgame-utils.h;h=e5a0548674e183139848027f4c8a3033d6343fdc;hp=6d70ff147d3acafd3012d347da679a8fee941e00;hb=1b19fd140ff139b5854a1a62447faf31b175d8f6;hpb=b26d446b0cb6a316abc3a79d4fc70d0ae1b7994c diff --git a/examples/fpp-game/game-utils.h b/examples/fpp-game/game-utils.h index 6d70ff1..e5a0548 100644 --- a/examples/fpp-game/game-utils.h +++ b/examples/fpp-game/game-utils.h @@ -1,5 +1,5 @@ /* - * Copyright (c) 2016 Samsung Electronics Co., Ltd. + * Copyright (c) 2020 Samsung Electronics Co., Ltd. * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. @@ -18,9 +18,9 @@ #ifndef GAME_UTILS_H #define GAME_UTILS_H -#include #include #include +#include namespace GameUtils { @@ -29,14 +29,13 @@ typedef std::vector ByteArray; /** * Loads file from the storage and returns byte array */ -bool LoadFile( const char* filename, ByteArray& out ); +bool LoadFile(const char* filename, ByteArray& out); /** * Computes hash value from string using djb2 algorithm * @return hash value */ -size_t HashString( const char* str ); -} +size_t HashString(const char* str); +} // namespace GameUtils #endif -