Release 1.13 of the C++ Middleware Writer on line0153 (5/9/2010 5:06:56 PM) comp.lang.c++.moderated Shalom
Release 1.13 of the C++ Middleware Writer is now on line. This
release adds support for the following:
1. A lil_string class which throws an exception if an operation
would result in a string... Brian
Release 1.13 of the C++ Middleware Writer now on line2143 (5/8/2010 10:42:30 PM) comp.lang.c++ Shalom
Release 1.13 of the C++ Middleware Writer is now on line. This
release
adds support for the following:
1. A lil_string class which throws an exception if an operation
would result in a strin... Brian
Short string class11152 (4/15/2010 6:34:52 PM) comp.lang.c++
Shalom
Is there a short string class around? I've searched a little on the
net and didn't find anything. I'm interested in a class that limits
(possibly at compile time) the length to 255, so marshalli... Brian
Release 1.12 of the C++ Middleware Writer on line0147 (4/1/2010 9:10:51 PM) comp.lang.c++
Release 1.12 of the C++ Middleware Writer is now on line.
This release fixes several bugs and adds support for the
following:
1. Multiple inheritance, but we don't support virtual
inheritance yet. G-d ... Brian
Release 1.12 of the C++ Middleware Writer on line0200 (4/1/2010 8:04:38 PM) comp.lang.c++.moderated Release 1.12 of the C++ Middleware Writer is now on line.
This release fixes several bugs and adds support for the
following:
1. Multiple inheritance, but we don't support virtual
inheritance yet. G-d wi... Brian
Marshalling auto_ptr/unique_ptr objects3110 (3/7/2010 2:29:27 AM) comp.lang.c++.moderated I'm adding support for auto_ptr/unique_ptr to the C++
Middleware Writer. In the past I've gotten a few pointers
on implementations here and since I'm not an expert on
either of those classes, I would like to... Brian
Difference between enum class and enum struct4251 (2/26/2010 5:12:33 PM) comp.lang.c++
Shalom
Is there any difference between
enum class Fruit : uint8_t { love = 1, joy, peace, patience,
kindness };
and
enum struct Fruit : uint8_t { love = 1, joy, peace, patience,
kindness };
... Brian
Version 1.11 of C++ Middleware Writer now on line0150 (2/23/2010 11:14:42 PM) comp.lang.c++.moderated
Shalom
Release 1.11 of the C++ Middleware Writer is now on line.
This release has the following changes:
1. std::complex and boost::circular_buffer support added.
2. Support added for strongly-typ... Brian
Version 1.11 of C++ Middleware Writer now on line325 (2/23/2010 8:34:25 PM) comp.lang.c++ Shalom Release 1.11 of the C++ Middleware Writer is now on line. This release has the following changes: 1. std::complex and boost::circular_buffer support added. 2. Support added for strongly-typed enums... Brian
Hello, Complex World5154 (1/12/2010 11:10:12 PM) comp.lang.c++
I've been working on adding support for std::complex to the C++
Middleware Writer -- http://webEbenezer.net/build_integration.html.
So far this is what I have:
template
void
complexCount(Counter& cn... Brian
Locating large header files?17122 (5/19/2010 12:57:21 PM) comp.lang.c++ I have a large application which is around 8 MB when its build. I am pretty sure there are some
unnecessary includes. Is there some tool to locate large or unused header files in soure code?
... none
where to find string class14119 (3/12/2010 8:42:27 PM) comp.lang.c++ I am a c++ beginner and was wonder if anyone knows of where I can find
a c++ string class for download that is easy to use for creating
strings, arrays of strings, and manipulating strings....
Thank you,
... Robin
Version 1.11 of C++ Middleware Writer now on line325 (2/23/2010 8:34:25 PM) comp.lang.c++ Shalom Release 1.11 of the C++ Middleware Writer is now on line. This release has the following changes: 1. std::complex and boost::circular_buffer support added. 2. Support added for strongly-typed enums... coal(257)
Member variable comparator factory347 (2/23/2010 4:28:16 PM) comp.lang.c++ Assume you have some kind of struct with several member variables. For the same of simplicity, let's assume that your struct is like: struct Info { str::string name; int age; }; Now, suppose you h... nospam270(2875)
state function library1230 (2/14/2010 1:59:28 AM) comp.lang.c++ Is the following legal: 1/ Calling placement new for a different type that is guaranteed to have the same member data. 2/ Calling placement new multiple times on the same memory. example: struct StateFuctor... peter.stirling(4)
Testing Program Question8931 (2/12/2010 5:22:16 AM) comp.lang.c++ I am unable to find good documentation which talks about debug macro. The exception may be used for testing purpose. /* C Code */ void foo( int x ) { #if _DEBUG if( x > 10 ) std::cerr 10 ) std::cerr ... Immortal_Nephi(170)
PHP to C++: HipHop for PHP ...thoughts?536 (2/6/2010 9:40:31 AM) comp.lang.c++ Developers over at Facebook are getting ready to release a PHP to C++ code converter, dubbed 'HipHop' (HPHP). The reaction has been positive on the PHP side; although this really only benefits large-scale web a... nick___(15)
Defining a BasicSocketStream25123 (6/10/2010 6:47:12 PM) comp.lang.c++ I want to define a stream class BasicSocketStream or basic_stringstream<>, but for socket reading and
writing. Is this a good idea or even possible? Neither basic_iostream
nor any of its bases seem to declare... Sousuke
serialized and deserialized methods3119 (6/6/2010 3:05:22 AM) comp.lang.c++ I recently had a doubt about the following lines of code. I have
posted and received a satisfactory reply to it. However, a couple of
responses advised me to use serialized and deserialized methods to do
the... binoythomas1108(31)