C++

On iPhone X(iOS11.2), use Regular Expressions library.

Author: h.mohri The 35th Developer camp will be held in Japan on March 15, 2018. The venue is Tokyo Akihabara UDX GALLERY NEXT. C++Builder 10.2.2 is one of the merits of being able to use RTL and STL. For RTL, the classes on Regular expressions are TRegEx, TPerlRegEx. But, since std::regexSTL can also be used, I set the target device to iOS this time and tried it. I tried four…
Read more
C++

Get Started with RAD Studio 10.2.1 using Sample Projects

Guided Tour The Guided Tour is a step-by-step bubble pop-up tour that shows you how to build your first multi-device FireMonkey application using the FireUI Designer. Following the steps in the tour is a good starting point for anyone new to the FireMonkey framework. You can access the Guided Tour from the Welcome Page. Mobile Snippets We provide a number of FireMonkey mobile…
Read more
C++

C++ Builder Header Dependencies

Why should you care about header dependencies in C++? One reason is header dependencies can have an impact on building, refactoring, testing and on the structure of your software. And reducing header dependencies in C++ also reduces compile time dependencies – the dependencies between files and libraries at compile time. One way to reduce header dependencies in C++ is to avoid including…
Read more