Commit 7d822ce5f3dde92d5e06d474ae8868180e56f9b4
1 parent
27cfb443
Include <cstdio> to compensate for core inclusion cleanup
Follows core patch: https://review.tizen.org/gerrit/#/c/35596 , adaptor patch: https://review.tizen.org/gerrit/#/c/35597/ and toolkit patch: https://review.tizen.org/gerrit/#/c/35598/ Change-Id: I074c8b1b77d2da44067a0200e851291e21774f2c Signed-off-by: Andrew Cox <andrew.cox@partner.samsung.com>
Showing
7 changed files
with
10 additions
and
2 deletions
examples/builder/dali-builder.cpp
examples/builder/examples.cpp
examples/hello-world/hello-world-example.cpp
examples/image/image-scaling-irregular-grid/image-scaling-irregular-grid-example.cpp
examples/new-window/new-window-example.cpp
examples/page-turn-view/page-turn-view-example.cpp
| ... | ... | @@ -15,11 +15,12 @@ |
| 15 | 15 | * |
| 16 | 16 | */ |
| 17 | 17 | |
| 18 | +#include <dali/dali.h> | |
| 19 | +#include <dali-toolkit/dali-toolkit.h> | |
| 18 | 20 | #include <assert.h> |
| 19 | 21 | #include <cstdlib> |
| 20 | 22 | #include <string.h> |
| 21 | -#include <dali/dali.h> | |
| 22 | -#include <dali-toolkit/dali-toolkit.h> | |
| 23 | +#include <iostream> | |
| 23 | 24 | |
| 24 | 25 | using namespace Dali; |
| 25 | 26 | using namespace Dali::Toolkit; | ... | ... |