0
votes
1answer
49 views
boost split compile issue
I have the following code snippet. I am compiling using the sun studio 12 compiler and have tried boost 1.33 and 1.39
#include <boost/algorithm/string.hpp>
#include <stri …
3
votes
2answers
74 views
Cross platform unicode path handling
I'm using boost::filesystem for cross-platform path manipulation, but this breaks down when calls need to be made down into interfaces I don't control that won't accept UTF-8. For …
1
vote
4answers
80 views
shared_ptr vs scoped_ptr
scoped_ptr is not copy able and is being deleted out of the scope. So it is kind of restricted shared_ptr. So seems besides the cases when you really need to restrict the copy oper …
0
votes
2answers
29 views
help needed with boost python…
Hai friends,
I've installed boost python from ubuntu 9.04 repositories.. I've successfully run the
Build a Simple Program Using Boost
from the tutorial http://www.boost.org/doc/li …
2
votes
2answers
37 views
boost to_upper function of string_algo doesn’t take into account the locale
I have a problem with the functions in the string_algo package.
Consider this piece of code:
#include <boost/algorithm/string.hpp>
int main() {
try{
string s = "me …
2
votes
3answers
68 views
Determine Parent Class from boost::any
May I know is there any way to determine parent class from boost::any?
#include <iostream>
#include <boost/any.hpp>
class a {
public:
virtual ~a() {}
};
class b …
1
vote
2answers
33 views
Building Boost on Linux - library names
I am trying to build an application which depends on Boost. So I downloaded Boost 1_41_0 to my Linux box and followed the instructions found on the Boost site for Unix variants,
h …
5
votes
5answers
213 views
Boost cheat sheet
I just had a hell of a project doing simple operations on C++, then when I was almost completely done with the project I found out that all this stupid tasks required just a portio …
0
votes
4answers
104 views
Weighted random numbers
Cheers,
I'm trying to implement a weighted random numbers. I'm currently just banging my head against the wall and cannot figure this out.
In my project (Hold'em hand-ranges, sub …
0
votes
1answer
27 views
boost filtering_istream gzip_decompressor uncompressed file size
I am using the boost filtering stream object to read gzipped files. Works great!
I would like to display a progress bar for the amount of the file that has been processed. I need …
1
vote
3answers
84 views
C++ boost shared array swapping pointers (simple question)
Hi all,
I'm new to boost shared arrays.
There is existing code that declares two arrays:
boost::shared_array<unsigned char> src;
boost::shared_array<unsigned char> …
1
vote
1answer
28 views
Can boost filesystem change the read-only attribute of a file?
Is there a way to change the attribute of a file from read-only to read-write using the boost filesystem library? If not, what is the next-best way to do this on Windows (using Mic …
1
vote
1answer
40 views
Hooking up Boost serialize and iostreams to gzip and flush a serialized object to string?
Hi all; I've been using the Boost serialization library, which is actually pretty nice, and lets me make simple wrappers to save my serializable objects to strings, like so:
templ …
2
votes
2answers
59 views
Memory leak using multiple boost::connect on single slot_type
Hi,
I'm using boost::signals and leaking memory when I try to connect multiple signals to a single slot_type. I've seen this same leak reported on various forums, but can't find an …
0
votes
0answers
13 views
Using Cygwin to build srecord for native Windows
I'm trying to build the srecord tools for the native windows, http://srecord.sourceforge.net/windows.html. I execute, CC='gcc -mno-cygwin' CXX='g++ -mno-cygwin' ./configure. I get …
