Posts
 
Reputation
Joined
Last Seen
Ranked #1K
Strength to Increase Rep
+3
Strength to Decrease Rep
-0
100% Quality Score
Upvotes Received
1
Posts with Upvotes
1
Upvoting Members
1
Downvotes Received
0
Posts with Downvotes
0
Downvoting Members
0
1 Commented Post
0 Endorsements
Ranked #2K
~15.2K People Reached
About Me

Currently applying for jobs

Interests
Non-computing: Beer, Psychology, getting out-and-about. Computing: C++, Image Processing, Computer Vision,…
Favorite Forums
Favorite Tags
c++ x 23
Member Avatar for tomtetlaw

before i ask this question i want you to keep in mind that i am asking it in general, and i also want a general answer :) i am making a 3d first person shooter and i want to know how i would go about getting a gun infront of …

Member Avatar for _adam_
0
173
Member Avatar for Soleng

I would like to have a singleton class along the lines of the Meyer's Singleton but which is private to a single thread. The singleton should automatically destroy itself when the thread dies. Any suggestions are appreciated! Harald

Member Avatar for _adam_
0
505
Member Avatar for serkan sendur

hi guys i want to achieve something like this : in header file : [CODE]#pragma once class wef { private: int a[]; void setI(); };[/CODE] and the code file will be like this: [CODE]#include "wef.h" void wef::setI() { a = {1,2,3}; }[/CODE] could you please help me with that?

Member Avatar for serkan sendur
0
12K
Member Avatar for daviddoria

In integration.h I have this [code] class FunctionClass { public: virtual double f(const double x) = 0; }; [/code] Then in probability.h, I have this [code] #include "integration.h" class Mass1 : public FunctionClass { public: double Clutter; Mass1(double c) : Clutter(c) {} double f(const double x) { return Clutter * …

Member Avatar for _adam_
0
1K
Member Avatar for Ronen444

Hi guys... I've downloadws today the IronPython. One thing i've noticed that if you type, for example, 5+6 it calculates it..! So, i tried to do that with my App too, without success... Note: I've tried "if" sentences, but they are pretty useless... [B]Help![/B]

Member Avatar for _adam_
0
80
Member Avatar for mattwaab

Hey, i am working on a project in which i am making a minesweeper game. The game part was written by my prof. all i had to do was make the class and header to run the background of the game. I have done so successfully, but i am having …

Member Avatar for mattwaab
2
251
Member Avatar for monere

Hello, I want to develop a video application using a tv tuner from Aver media Avertv hybrid ultra usb. I need to know how to control the tv tuner: issuing cpmmands such as " pause, read, write, record, timing command etc ". operating system : windows vista. programming language: C++ …

Member Avatar for _adam_
0
85
Member Avatar for arun_lisieux

QUESTION: The prime factors of 13195 are 5, 7, 13 and 29. What is the largest prime factor of the number 600851475143 ? I was trying to solve this problem. I was previously suggested to use the "Sieve of Eratosthenes" Method to find the prime nos. [url]http://en.wikipedia.org/wiki/Sieve_of_Eratosthenes[/url] I came up …

Member Avatar for arun_lisieux
0
281