C++ is a widely-used, statically-typed, free-form, compiled, multi-paradigm, multi-level, imperative, general-purpose, object-oriented programming language based on C.
-1
votes
0answers
13 views
How to download code C++ from doxygen
I am very interesting in a project in doxygen but I don't know how to download full code from it. From doxygen, I only see content and describer of these class in project. How to download all code ...
-4
votes
0answers
32 views
How to calculate the age of a person?
For example, I need to calculate the time past since 1996-11-03 (yy/mm/dd) until now.
I need to do it in MC visual c++ in windows form app. The user will enter the year, month, day in 3 different ...
0
votes
0answers
34 views
Using the #define macro to standardize class declaration
I'm building a C++ DLL for one of my projects. I am trying to standardize the way that are class are defined. So instead of each time writing:
class __declspec(dllexport) ClassName
I'm building a ...
0
votes
0answers
7 views
How to get QGridLayout item by clicked QPoint?
I have grid of QFrames in QGridLayout and a popup menu with some actions, which are targeted on the cell where mouse right click happens. On the implementation of ContextMenuEvent I get clicked QPoint ...
4
votes
0answers
76 views
Initialization of C struct in C++ [duplicate]
For a microcontroller project I'm working on, I'm writing a shared library. I'm mixing C and C++, mainly because of all the pointer arithmic that needs to be done in a low level part and because then ...
0
votes
1answer
11 views
Search detected faces from a database OpenCV
I am working with this Code:
Program sample
the above link has been programmed with the help of this page:
Servo Magazine
This Code can do Extract face, learn face and save the learn face in a ...
2
votes
2answers
40 views
Using Constructor for default member value
In C++11, can do this to initialize an object without using initialization list:
class Z{
int a=0;
int b;
z():b(0){} //<-- a already initialized
};
What I'm wondering is for class ...
1
vote
5answers
42 views
File Binary vs Text
Are there some situation where I have to prefer binary file to text file? I'm using C++ as programming language?
For example if I have to store some large text file is it better use text file or ...
2
votes
0answers
15 views
How can I get a good seed for C++ PRNGs for Windows
How can I get a good seed for a PRNG in Windows, using standard libraries? I tried CryptGenRandom (which always returns 0 to me, very random.).
I tried allocating memory and reading whatever is there, ...
0
votes
1answer
26 views
Called function clears changes of previous one
I'm working on a cellular automaton where changes happen in every rounds. Obviously, I made a loop for it - basically it works, fortunately, but if I want to add another type of cells to the map, one ...
-5
votes
0answers
33 views
Emacs or Vim for C++ 11 development? [closed]
I can't find a good article on this, I can't even find something really convincing that can help me with the final decision.
I like to use the terminal because the keyboard it's faster than keyboard ...
1
vote
0answers
51 views
Variadic template overload resolution
Suppose I have a list of template parameters that can be incremented. I want to increment the head of this list. Here is the code
template<int N>
struct Counter {
static constexpr ...
1
vote
2answers
38 views
Template function with a forward declared class
Noob question here. I have a class with a circular dependency so I forward declared it. Now, I'm planning to try out a template with this.
//in C.h
class C {
public:
virtual void getMap();
}
// ...
0
votes
0answers
39 views
Check network activity in C++
Is there any way to check if there is a network activity in the system. I don't want to send or receive the data but only want to know if there is any type of network activity going on. I know socket ...
0
votes
2answers
23 views
Adding characters to each line in a QString
I have a QString with a multi-line text without space at the begining like:
Lorem ispum
Dolor a si met
Hulu il it er
and I would like to add space to each line to obtain something like ...
0
votes
1answer
30 views
Passing data from caller thread to the method in another boost::thread
I have rather a noob question regarding concurrency in C++ (Using Boost threads) on which I haven't found a clear answer.I have a worker class which runs in a separate thread.I init the worker on ...
1
vote
3answers
36 views
C++, class with method and enum type - can method and enum value have same names?
I have the following class:
class washm_t
{
public:
enum door_t { closed = 0, open = 1 };
private:
door_t door_state ;
public:
int open() ;
};
The problem with the class is that the ...
2
votes
1answer
61 views
Multiple uses of new and delete
I'm simulating a traditional card game between two players using C++: I defined a "card" structure so that
card sample;
cout << sample.numb << " of " << sample.suit << " ...
-3
votes
0answers
57 views
Insertions sort c# and c++ [closed]
I made 2 exactly same programs in c# and c++ and run them on ideone.com. The program perform insertion sort.
The function that I used is:
And they gave me this result:
C++: time: 0.08s | memory: ...
0
votes
2answers
67 views
c++ what is the type of T[] in template specialization
I have a question about the implementation of std::remove_extent (visual studio 11)
template<class _Ty>
struct remove_extent
{
typedef _Ty type;
};
...
0
votes
3answers
76 views
Finding the column total in an array
I have an 1-dimensional array with random elements, got through a m*n grid. I want to find out the row total and column total, present in it.
Here is how the 1 dimensional array is:
...
2
votes
3answers
59 views
The sizeof several casts
Why does the function sizeof not return the same size when its getting used on the struct itself?
I need to cast it because of a winsock program that im working on.
Thanks for any help, true.
...
4
votes
5answers
144 views
what's this C++ macro meaning?
I can't figure out what this macro means:
#define DECLARE_HANDLE(n) typedef struct n##__{int i;}*n
DECLARE_HANDLE(HWND);
I have learned from The C Program that
"##" meaning connect the ...
-4
votes
2answers
49 views
What is the best way to study design patterns in C++ which deals with real-life situations? [closed]
eg. if i have to design a basic prototype of robot or any basic gadget , which book or blog/sites provide info pertaining to mainly design oriented programming not the ones with complex problem or ...
0
votes
0answers
9 views
Bidirectional communication between C++ and SWIG generated Java Interface
I want to generate a Java Interface of the C++ header-file Operator.hpp with SWIG. I tried the solution from Generating Java interface with SWIG
My Interface looks like that:
%module(directors="1") ...
0
votes
5answers
70 views
Singleton destructor called error
#pragma once
#include <time.h>
class CTimer
{
time_t _last;
CTimer() { _last = time( NULL ); }
CTimer(const CTimer &);
CTimer& operator=(const CTimer&);
...
0
votes
0answers
12 views
incorrect value in coledatetime
I'm fighting a few days with COleDateTime in MFC.
I have CTime with correct values. Correct years, days, months, hours, minutes and seconds.
I tried a few ways to convert CTime to COleDateTime:
-1.I ...
0
votes
1answer
58 views
Number chaning value when assigned to variable?
I have a little problem when assigning a result to a variable, this is happening the first time to me now. I call Convert() with "aaa" as a parameter, here is my output:
aaa
**676** *(value from ...
5
votes
4answers
92 views
overriding with difference access specification c++
I came across a question while taking iKM test. There was a base class with two abstract methods with private access specifier. There was a derived class which was overriding these abstract methods ...
0
votes
0answers
14 views
C++/CLI “could not import member” warning when using shared_ptr as argument
I have the following interface in C++/CLI:
public interface class ISharedPtrInterface
{
void PrintSharedPtr(std::shared_ptr<std::wstring> ptr);
};
Which is implemented as follows:
public ...
0
votes
0answers
30 views
Explanation of the UB while changing data
I was trying to demonstrate to a work pal that you can change the value of a constant-qualified variable if really wants to (and knows how to) by using some trickery, during my demostration, I've ...
0
votes
1answer
61 views
Rotating left is rotating right
In C++ I want to rotate an array of 4 characters once to the left using the assembly instruction ROL. I thought I'd interpret the array as a dword and rotate this dword once to the left and this would ...
0
votes
2answers
131 views
Inheritance C++
I have the following problem with inheritance (I would love to google it, but don't know the correct keywords it seems).
I have a Module class that implements IModule interface with function A(). I ...
0
votes
0answers
12 views
How to run Netbeans makefile on terminal
I am trying to run the netbeans makefile via my terminal of one of my C++ project
While executing
Make
, I receive the following errors:
...
/bin/sh: 1: -o: not found
make[1]: *** ...
0
votes
0answers
12 views
force encoding to SQLGetData function in odbc
Please do you know a way to force an encoding(example utf-8) to retreive data using the SQLGetData function in ODBC?
Thanks in advance
0
votes
1answer
101 views
Compile c code as c#
Hi this may be a strange question but I have some c++ code that I would like to compile as c# code using Visual Studio 2012.
The code its self is completely compatible and will compile with both ...
0
votes
0answers
13 views
JavaScriptCore C++ API?
The documented API for JavaScriptCore is vanilla C. Since my language is C++, I'd rather have an object-oriented API, and I was about to start working on C++ wrapper over that C API, when I realized ...
0
votes
1answer
42 views
Design issue: Input files and parsing them and creating directories on the basis of content of that files
Suppose there is a directory XYZ having too many files (100 to 10000). Each file contain the format like first line having company name and second line some data values. for example file 1.txt having ...
-2
votes
4answers
46 views
Java bytecode to exe and combing c++ and java
I have read many articles and posts but im still confused how to make/convert bytecode to exe so that it can be run on any standalone machine withour JRE,JVM or any other kind of thing.
What does ...
5
votes
2answers
142 views
Setter of a lambda function?
Consider the following dumb example :
class MyClass
{
public:
template <class Function>
inline double f(double x, Function&& function)
{
return ...
0
votes
0answers
21 views
Using vertex_name when reading a GraphML file with Boost Graph
I am trying to load a simple GraphML file such that each vertex has a vertex name as stored in the GraphML. I can change the GraphML, the important thing is that I have access to the vertex_name from ...
0
votes
4answers
71 views
Guess the output. (Declaration/ initialization of a character array)
Here is a piece of code. I'm using g++
void initialize(int p, char a[], char b[])
{
for(int i=0;i<6*p;i++)
{
a[i]='-';
b[i]='-';
}
}
int main()
{
int p=9;
char ...
-1
votes
1answer
41 views
A correct way to convert byte[] in java to unsigned char* in C++, and vice versa?
I'm newbie in C++ and JNI, I try to find a correct way to convert byte[] in java to unsigned char* in C++ by using JNI, and vice versa ! (I'm working on android)
After looking for a solution in google ...
0
votes
4answers
107 views
C++: better to keep reference or pointer?
This might be regarded as a style question. I have a class that keeps a reference to an instance of another class:
class A { };
class B {
A& ref;
public:
explicit B(A& ref) : A(ref) { }
...
9
votes
2answers
237 views
Is empty struct defined by C++ standard?
Is there any std::empty struct or something similar or do I need to define my own:
struct empty{};
This can be used very nice in combination with std::conditional or other new std features and I ...
1
vote
0answers
21 views
C++ library - Using Quadprog++ and Array.hh
I'm trying to use the Quadprog++ library (http://quadprog.sourceforge.net/) but there is no documentation about it. In particular I'm trying to do the exponential of a matrix with the function of ...
0
votes
0answers
22 views
K d tree feature matching
I want to use KdTree algorithm to matching features in two image without opencv or FLANN and ANN code. Do you have other code for KDTree using C++ or link to it?
Thank you
0
votes
1answer
41 views
Resolving compiler error: pointer potentially uninitialized
I need to resolve an error that the compiler is picking up on - I understand why it's picking up on that error but need to resolve it since the function (throwing the error) will only execute when the ...
0
votes
0answers
29 views
how to browse classes after instantiation?
I'm developing a program in C++ using many templates.
I'd like to read definitions of some template classes after their instantiation.
For example
main.cc:
#include ...
0
votes
0answers
13 views
Multi_index_container composite_index lookups
I have 3 questions. Do not hesitate to answer any of these questions separately:
Context
I have a custom class as follows (simplified example):
class A {
public:
double property1;
double ...



