User intregus - Stack Overflow most recent 30 from stackoverflow.com 2009-12-03T13:07:34Z http://stackoverflow.com/feeds/user/112243 http://www.creativecommons.org/licenses/by-nc/2.5/rdf http://stackoverflow.com/questions/999358/undefined-symbols-linker-error-with-simple-template-class 3 "Undefined symbols" linker error with simple template class intregus 2009-06-16T02:34:31Z 2009-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 &lt;typename T&gt; 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 &lt;typename T&gt; T Gene&lt;T&gt;::getValue() { return this-&gt;value; } template &lt;typename T&gt; void Gene&lt;T&gt;::setValue(T value) { if(value &gt;= this-&gt;minValue &amp;&amp; value &lt;= this-&gt;minValue) { this-&gt;value = value; } } template &lt;typename T&gt; void Gene&lt;T&gt;::setRange(T min, T max) { this-&gt;minValue = min; this-&gt;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-algorithm 1 Need help with STL sort algorithm intregus 2009-07-09T15:24:18Z 2009-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 &lt;iostream&gt; #include &lt;vector&gt; #include &lt;algorithm&gt; #include &lt;stdlib.h&gt; #include &lt;time.h&gt; class Thing { public: Thing(int val) { this-&gt;_val = val; } bool operator&lt;(Thing&amp; rhs) { std::cout &lt;&lt; "this works!"; return this-&gt;val() &lt; rhs.val(); } int val() { return this-&gt;_val; } protected: int _val; }; struct Sort { bool operator()(Thing&amp; start, Thing&amp; end) { return start.val() &lt; end.val(); } }; int main (int argc, char * const argv[]) { std::srand(std::time(NULL)); std::vector&lt;Thing&gt; things; for(int i = 0; i &lt; 100; i++) { Thing myThing(std::rand()); things.push_back(myThing); } if(things[1] &lt; 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 &lt; 100; i++) { std::cout &lt;&lt; things.at(i).val() &lt;&lt; std::endl; } return 0; } </code></pre> http://stackoverflow.com/questions/1020924/build-errors-w-glee-gl-easy-extension-library 0 Build errors w/ GLee (GL Easy Extension Library) intregus 2009-06-20T04:10:03Z 2009-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#999383 Comment by intregus on "Undefined symbols" linker error with simple template class intregus 2009-06-16T02:49:39Z 2009-06-16T02:49:39Z Thanks! I must have learned that at one point. Maybe now it will stick :D