User intregus - Stack Overflowmost recent 30 from stackoverflow.com2009-12-03T13:07:34Zhttp://stackoverflow.com/feeds/user/112243http://www.creativecommons.org/licenses/by-nc/2.5/rdfhttp://stackoverflow.com/questions/999358/undefined-symbols-linker-error-with-simple-template-class3"Undefined symbols" linker error with simple template classintregus2009-06-16T02:34:31Z2009-09-11T14:39:48Z
<p>Been away from C++ for a few years and am getting a linker error from the following code:</p>
<p>Gene.h</p>
<pre><code>#ifndef GENE_H_INCLUDED
#define GENE_H_INCLUDED
template <typename T>
class Gene {
public:
T getValue();
void setValue(T value);
void setRange(T min, T max);
private:
T value;
T minValue;
T maxValue;
};
#endif // GENE_H_INCLUDED
</code></pre>
<p>Gene.cpp</p>
<pre><code>#include "Gene.h"
template <typename T>
T Gene<T>::getValue() {
return this->value;
}
template <typename T>
void Gene<T>::setValue(T value) {
if(value >= this->minValue && value <= this->minValue) {
this->value = value;
}
}
template <typename T>
void Gene<T>::setRange(T min, T max) {
this->minValue = min;
this->maxValue = max;
}
</code></pre>
<p>Using Code::Blocks and GCC if it matters to anyone. Also, clearly porting some GA stuff to C++ for fun and practice.</p>
http://stackoverflow.com/questions/1104605/need-help-with-stl-sort-algorithm1Need help with STL sort algorithmintregus2009-07-09T15:24:18Z2009-07-09T15:32:53Z
<p>I'm having some troubles with using the std::sort algorithm here. I was reading that you can just overload the less than operator to sort classes, but I have been getting all sorts of errors. I have also tried using a functor as you can see in the example I made below.</p>
<p>I was hoping somebody could see what I'm doing wrong here.</p>
<pre><code>#include <iostream>
#include <vector>
#include <algorithm>
#include <stdlib.h>
#include <time.h>
class Thing {
public:
Thing(int val) {
this->_val = val;
}
bool operator<(Thing& rhs) {
std::cout << "this works!";
return this->val() < rhs.val();
}
int val() {
return this->_val;
}
protected:
int _val;
};
struct Sort {
bool operator()(Thing& start, Thing& end) {
return start.val() < end.val();
}
};
int main (int argc, char * const argv[]) {
std::srand(std::time(NULL));
std::vector<Thing> things;
for(int i = 0; i < 100; i++) {
Thing myThing(std::rand());
things.push_back(myThing);
}
if(things[1] < things[2]) {
//This works
}
//std::sort(things.begin(), things.end()); //This doesn't
//std::sort(things.begin(), things.end(), Sort()); //Neither does this
for(int i = 0; i < 100; i++) {
std::cout << things.at(i).val() << std::endl;
}
return 0;
}
</code></pre>
http://stackoverflow.com/questions/1020924/build-errors-w-glee-gl-easy-extension-library0Build errors w/ GLee (GL Easy Extension Library)intregus2009-06-20T04:10:03Z2009-06-20T04:25:43Z
<p>Using Code::Blocks w/ mingw, and trying to use GLee for some OpenGL on windows. I'm getting the following build errors:</p>
<pre><code>GLee.c|60|undefined reference to `_wglGetProcAddress@4'
GLee.c|10748|undefined reference to `_wglGetProcAddress@4'
GLee.c|10751|undefined reference to `_wglGetCurrentDC@0'
GLee.c|10797|undefined reference to `_glGetString@4'
GLee.c|10910|undefined reference to `_glGetString@4'
GLee.c|10976|undefined reference to `_glGetString@4'
</code></pre>
<p>And I'm just including GLee likes so (with GLee.c, not the .dll):</p>
<pre><code>#include "GLee.h"
</code></pre>
<p>According to Ben Woodhouse, GLee is "written in pure ANSI C, so any C or C++ compiler should work. You can include the source files in your projects directly or compile them into a library", so I should be having no problems.</p>
<p>Google didn't give me much on this, so I'm hoping some OpenGL vets (or anyone familiar with GLee) out there can point me in the right direction.</p>
http://stackoverflow.com/questions/999358/undefined-symbols-linker-error-with-simple-template-class/999383#999383Comment by intregus on "Undefined symbols" linker error with simple template classintregus2009-06-16T02:49:39Z2009-06-16T02:49:39ZThanks! I must have learned that at one point. Maybe now it will stick :D