-
Recent Posts
Recent Comments
- Junaid on NEON optimizations for iOS and Android
- Koki Sugawara on Introducing Cricket FFT
- Koki Sugawara on Introducing Cricket FFT
- john on The 4 most annoying Xcode bugs
- manoah on Drum Coach 1-4
Categories
Archives
- April 2018
- March 2018
- January 2018
- April 2016
- June 2015
- February 2015
- October 2014
- July 2014
- June 2014
- May 2014
- March 2014
- February 2014
- January 2014
- December 2013
- November 2013
- October 2013
- September 2013
- July 2013
- June 2013
- May 2013
- March 2013
- January 2013
- November 2012
- August 2012
- July 2012
- June 2012
- March 2012
- February 2012
- December 2011
- November 2011
- October 2011
- September 2011
- August 2011
- July 2011
- June 2011
- May 2011
- April 2011
- March 2011
Feeds
Category Archives: C++
Hiding implementation in C++
Let’s say you’re designing a C++ API. You have some class like this, which is part of your interface : #include “MyData.h” class Sound { public: Sound(); ~Sound(); void play(); private: MyData m_data; }; Since the class MyData is a … Continue reading
Posted in C++
Leave a comment
C++ development on iOS and Android
The basic interface for the Cricket engine is C++, as is most of the implementation. Objective-C is the primary development language on iOS, and Java is the preferred language on Android, but both platforms support C++ also; C++ code can … Continue reading
Posted in Android, C++, iOS
Leave a comment