C++ is a widely-used, statically-typed, free-form, compiled, multi-paradigm, multi-level, imperative, general-purpose, object-oriented programming language based on C.

learn more… | top users | synonyms (1)

0
votes
1answer
8 views

How can i release the memory of cvHaarDetectObjects?

CvSeq* objects = cvHaarDetectObjects( &image, this->cascade, this->storage, scale, // scale : Scale 1.3 means the next round scan will scale 30% bigger. 2, ...
-3
votes
0answers
25 views

C++ equivalent of Java's paintcomponent?

After a good year on java, I've come to use the paint component so I can "visually" see my programs work. I want to learn c++, but I simply cant visualize my programs by the console. Is there any ...
0
votes
0answers
5 views

Pass variable from flex as3 to swc?

I'm trying to pass key codes from as3 flex project to swc already has deafault codes but i didn't figure it out yet, can anybody help me, head me to right direction. this is my action script code: ...
0
votes
1answer
15 views

migrate code using C99 dynamically allocated multidimensional arrays into C++

I'm in the process of trying to learn how to do things in C++, and one of the aspects with which I'm grappling is how to efficiently implement dynamically allocated multidimensional arrays. For ...
0
votes
1answer
9 views

nginx / FastCGI application loads page multiple times per request

I was following this tutorial, and I modified the code slightly and added a counter to it. The page displays "Hello World" and then displays the counter. Now, the weird thing is, the code compiles ...
-6
votes
0answers
19 views

time of registration need to be captured C++

I am writing a program for a clinic now. here is my code ,the problem now is I need to write 2 functions for my program The first function : is to capture time of registration The second ...
0
votes
1answer
11 views

CMFCStatusBar double click event

How to response to CMFCStatusBar double click event? I have already called m_StatusBar.EnablePaneDoubleClick(TRUE);
-2
votes
0answers
20 views

Searching in vectors of linked lists c++

I have a homework which consists of a complicated hierarchy of classes with vectors of arrays in them and I can't advance in it... :( Here's the code (the part of I've successfully created, but can ...
-5
votes
0answers
51 views

cannot convert `std::string' to `int' for argument `2' to `int EstudentInfo(int, int, std::string, std::string, int, int, int, int)'

Up top is the calling of the EstudentInfo function and StudentInfo function in main. Below is the functions themselves. I'm trying to archive a list of students (EstudentInfo), getting their info, ...
0
votes
0answers
11 views

Intel Compiler ICC(Composer XE 2013) in Binary Compatibility with Visual Studio 10 built DLLs

I am trying to use the Intel Compiler 2013 to build a plugin consisting of several DLLs that will be loaded into another application built with Visual Studio 2010. I do not have control over the ...
0
votes
1answer
70 views

C++ Initialize Class based global variables

I am trying to define few global variables which should be available all functions but would like to initialize from main program. Can anyone help me with the syntax? Please note that still a bit ...
1
vote
1answer
30 views

Cuda matrix multiplication gives wrong answer

Update! My current code doesn't check for out of bounds memory access. When I run the cuda memcheck, it says memory access is bad even for matrices of just 2 by 2! I'm accessing memory where I ...
-1
votes
1answer
27 views

how can i get console output from cout/printf in a win64 app c++?

I am writing a game, and I want to use the console (cout / cin) for talking to other players /entering cheats. How can I get the output and put it in a string to write on the window. Thnx!
0
votes
0answers
8 views

OSX and OpenGL : ERROR: Internal error <FBConfig with necessary capabilities not found> in function fgOpenWindow

I have an OpenGL project I'm attempting to run in OSX 10.8, so far the project compiles correctly and when you attempt to start it, XQuartz will come up. However, before anything appears on the ...
0
votes
0answers
20 views

OSX : Symbols not found for architecture i386

I have the following makefile that uses C++ and OpenGL. It was compiling at all, so I added the -m32 line in order to attempt to get it to compile in x86_64. Now I'm getting the same error but it's ...
1
vote
0answers
9 views

Why icon of an MFC ribbon galery button does not change?

I am trying to create an MFC ribbon galery button( similar to mspaint brushes button ) using visual studio 2010 ribbon wizard. step1 I created a galery button, changed button mode to true, set ...
-1
votes
3answers
33 views

Vector Public in Class - Can't Use in Implementation?

Here's my situation. I have a class in which I have defined a vector publicly, as below: class TrackObjects { public: vector<MovingObj> movingObjects; ... etc. It has a constructor and ...
-1
votes
2answers
46 views

Theoretically, would it be possible to allow multiple C++ templates to have the same name? [duplicate]

It would be like function overloading. E.g. it is ok to do this: void foo(int i) { ; } // Function overload ftw. void foo(int i, int j) { ; } But it is not (yet) ok to do this: ...
0
votes
1answer
19 views

How sort unique on a std::vector of Eigen::Vector?

The compiler can't figure out the less than operator for the type. I've also tried with a lambda and predicate function. #include <Eigen/Dense> typedef Eigen::Vector3f vec3; inline bool ...
0
votes
1answer
57 views

Interesting mistake in string pointer

I created a function which transforms a number to its equivalent in given base and prints it into a string. It looks like flawless but gives absurd results. Code below should translate 100 to base 9 ...
0
votes
1answer
35 views

having some issues when i am compiling my code

i really do not know why i am having these compiling issues here when i compiled this program yesterday it compiled nicely but today its not,the code shows how ro create shapes a ball and a cone and ...
0
votes
0answers
25 views

“Unresolved external symbol” errors when creating a Qt GUI application with Visual Studio 2010

I am trying to make a very simple GUI application, on the top of some C++ code which I wrote. My problem could be simplifed to the following: #include <QtGui\QDialog> void setup(int argc, char ...
0
votes
0answers
25 views

Import a function from a different module

Say a function f_a in module m_a calls another function f_b in module m_b. This is the only reference across module m_a. Now, I'd like to make module m_a self-contained, i.e. eliminate references to ...
1
vote
0answers
18 views

Is it legal to statically link libstdc++ and libgcc in a binary-only application?

Is it legal to distribuite a binary-only application which has been built by statically linking unmodified versions of both libstdc++ and libgcc from the GCC suite version 4.7 or greater?
0
votes
1answer
19 views

C++ compile error c2664 ZeroMemory

Why does this ZeroMemory(&socketAddress, sizeof(Connection::socketAddress)); work, but this doesn't? ZeroMemory(&Connection::socketAddress, sizeof(Connection::socketAddress)); I get this ...
0
votes
1answer
27 views

Shared memory C++ and Win API 32 with custom class

Are there any samples with getting custom class including large arrays as properties in shared memory? I need read/write access from different threads in same process. Size of class instance is ...
10
votes
1answer
86 views

Why is basic_string::swap not noexcept?

I just found out that the two swap functions for basic_string (member function and function in namespace std) are not declared with noexcept - neither in the standard library of GCC-4.8 nor in the ...
0
votes
1answer
24 views

C++: how do I create istream with desired content?

I was given a function with following signature. I can't change it, I have to work with it. void parse(std::istream & in); I'm supposed to test this function, so basically call it with ...
0
votes
1answer
38 views

why is setw not working?

#include<fstream.h> #include<iomanip.h> #include<iostream.h> using namespace std; ifstream f("atestat.in"); ofstream g("atestat.out"); int n,i,nr=0; float v[100]; void a(int n) { ...
0
votes
1answer
25 views

Modifying functor variable when using incremental spatial searching with cgal

I've modified an example given by the computational geometry cgal library (link) that demonstrates incremental searching on a 2D plane (Section 49.3.2). The example uses a functor to set spatial ...
-6
votes
0answers
81 views

Why my program is time exceed?

I post this question before i know you don't understand it, but without help a make finally the program from this problem: Given a number n (n<=10^12) print all its prime factors in strictly ...
3
votes
2answers
36 views

How to Get Max Number of Multitextured Units

Lets say I have a function where I want the user to be able to select the appropriate texture in a type safe manner. So instead of using a GLenum of GL_TEXTUREX I define a method as follows. void ...
0
votes
0answers
12 views

OpenCV HaarCascade msc rightear

I'm trying to detect an ear, but unfortunately I'm not getting. I think it's a configuration error on cvSetImageROI or cvHaarDetectObjects. Could someone help me? Regards Code: cvSetImageROI( ...
0
votes
0answers
11 views

termios Arduino read/write failing

Hello I am having some trouble trying to program an Arduino to take commands from a c++ program. I am using termios to connect to the Arduino. The Arduino is in gateway mode (basically it is not ...
0
votes
0answers
20 views

C++ CGI Programming using thru mode - error collecting data from user

New to this site, I'm hoping I can get a little help. I have an Apache server setup, and I am trying to collect some information from the user. I have a table set up, which looks like this ...
14
votes
5answers
363 views

got an unexpected answer from the x?y:z expression

Here is a simple C++ snippet: int x1 = 10, x2=20, y1=132, y2=12, minx, miny, maxx, maxy; x1<=x2 ? minx=x1,maxx=x2 : minx=x2,maxx=x1; y1<=y2 ? miny=y1,maxy=y2 : miny=y2,maxy=y1; ...
-3
votes
0answers
25 views

c++ Image processing, recognition of elements

I'm writing image recognition program, but I'm stuck. I managed to find edges (can't provide code now, it's somehow returning 0xc0000005 for colour images on this machine. It's working for ...
0
votes
1answer
6 views

Moving around the lblas library and using it with the g++ compiler

So on my current computer I Have a library to use BLAS functions, but I need to run my c++ program on an external server. I know how to transfer files to the server, but I'm having trouble figuring ...
1
vote
2answers
65 views

Implement Iterators Even When Not Needed? C++

I have a container called "ntuple" that is essentially a C array and length. It's main purpose is to be the argument of multi-dimensional math functions. As of now, it's really fast and utilizes ...
-4
votes
0answers
13 views

Values for members of AVICOMPRESSOPTIONS?

I want example of values set for the members of AVICOMPRESSOPTIONS structure with comments for each mamber's function
-3
votes
1answer
61 views

Having trouble with programming arrays

I keep getting errors in programming this. Any pointers as to what I'm doing wrong would be appreciated. The program actually runs, but it returns no value and instead writes the error code that the ...
0
votes
1answer
35 views

Conversion warning. and Class error

I'm learning C++, and in an assignment I'm doing right now, I get a bunch of warnings that I suspect are causing the two errors I'm getting as well. The problem is that the lines where the warnings ...
0
votes
1answer
33 views

Assign values of each line of my file to an array

I have a file which has several lines and each lines have unknown integer values which are separated by space characters. I want to assign each line's integers to different lines of an array. I tried ...
0
votes
1answer
34 views

Create a file at a given path using C++ in Linux

I want to create a file at a given path that is relative to the current directory. The following code behaves erratically. I some times see the file created and some times do not. That may be because ...
2
votes
1answer
43 views

Strange error while using valgrind? a bug maybe?

I am developing a C++ program and when finished, I wanted to check for memory leaks, but I have found an strange error with valgrind: ==9106== Invalid free() / delete / delete[] / realloc() ...
0
votes
1answer
13 views

taglib : how to edit Album Artist?

How to modify the "Album Artist" field of a MP3 file with the library TagLib ? Is there something similar to : f.tag()->setArtist("blabla"); ?
1
vote
1answer
39 views

How to use base member initialization on an array?

Making a blackjack game and need to know how to initialize an array using base member initialization (i.e. intializing within a constructor using the unary scope resolution operator). //Constructor ...
1
vote
3answers
145 views

Templates from C++ in C

I am trying to recreate some classes from the C++ standard library in C. For example, the std::pair class. To emulate templates, I used macros of course. Here is an example of how it looks like: ...
0
votes
2answers
37 views

Unexpected changes in std::vector

Here is the code: typedef struct Triplet { double value; int row; int column; }; class Matrix { public: //Some methods double specialMethod(/*params*/); private: ...
-1
votes
0answers
15 views

Remove GUI and set options in the code

I am writing code to create compressed .avi file from bitmap images. The program shows a form on execution to set properties for compression of video file. I want to remove the UI and set the ...

1 2 3 4 5 4027