C++CodeIDE

C++ in the News

In this blog post you’ll find links to recent C++ articles related to the language, programming, ISO standard and software development. The articles included are for the period of November 6, 2022 to December 7, 2022. C++ Language Bjarne Stroustrup was live online on Nov 15, 2022: ‘What is good C++ code?’ Read the Article and Watch the YouTube Video C++ overtakes Java in December…
Read more
C++

Articles and News from the C++ community

To prepare for the appearance of C++17 support in the “Carnival” release of C++Builder (RAD Studio August 2018 Roadmap), here are some recent articles that have appeared in the C++ community. To stay up to date on what’s happening with ISO C++ you should…
News

A vulkan header generator for Delphi.

Author: Craig Chapman What is darkVulkanGen? A handful of months back, I began working on a game engine for Delphi named darkGlass. see: http://chapmanworld.com/darkglass/ https://github.com/chapmanworld/DarkGlass At that time I’d intended to write the rendering part of…
C++

Learn to Program with Community Edition

Author: Rebekah D Get started programming with our Community Editions! Community Edition is our full-featured and free IDE to build applications for iOS, Android, Windows and macOS from a single codebase using the robust and easy-to-learn Delphi language. It’s…
C++

Jump start your IoT solution with ready-to-use components

Let’s say for example that you want to create a heart rate monitor app. You’ll need information about the heart rate GATT profile to connect to andcollect data from the bluetooth enabled HR monitor device. GATT profilesare high level definitions that define how to use standard services in your applications. The heart rate GATT profile is used for fitness or health…
Read more
News

C++ with LINQ

Author: Shinji Chikugi I found an interesting C++ libraly.That is “LINQ for C++”. What’s “LINQ”? LINQ (Integrated Language Query) is a function of C#. LINQ issues a query to the container and gets the result. For details, please refer to…
News

darkUnicode codec for Delphi

Author: Craig Chapman Another library to drop out of my Dark Glass development project today is my unicode codec (now named darkUnicode). https://github.com/chapmanworld/darkUnicode This simple class can be used to encode and decode unicode code-points by hand (independent of RTL functions to do the same), and I’ve used it previously to create my own unicode text buffer and stream…
Read more