User ugasoft - Stack Overflow most recent 30 from stackoverflow.com 2009-11-30T23:06:01Z http://stackoverflow.com/feeds/user/10120 http://www.creativecommons.org/licenses/by-nc/2.5/rdf http://stackoverflow.com/questions/67554/whats-the-best-free-c-profiler-for-windows-if-there-are 14 What's the best Free C++ Profiler for windows (if there are) ugasoft 2008-09-15T22:15:11Z 2009-11-01T15:43:51Z <p>Hi, I'm looking for a profiler in order to find the bottleneck of my c++ code. I'd like to find a free, non intrusive, good profiling tool. I'm a game developer and I use PIX for Xbox360, I found it very good (but not free) I know the Intel v-Tune, but it's not free.</p> <p>There exists any free profiling tool?</p> http://stackoverflow.com/questions/75538/hidden-features-of-c/75849#75849 4 Answer by ugasoft for Hidden Features of C++? ugasoft 2008-09-16T19:10:07Z 2009-09-09T23:46:53Z <p>There are a lot of "undefined behavior". You can learn how to avoid them reading good books and reading the standards.</p> http://stackoverflow.com/questions/87372/is-there-a-technique-in-c-to-know-if-a-class-has-a-member-function-of-a-given-s 6 Is there a Technique in C++ to know if a class has a member function of a given signature ugasoft 2008-09-17T20:36:43Z 2009-09-06T20:12:17Z <p>Hi, I'm asking for a template trick to detect if a class has a specific member function of a given signature.</p> <p>The problem is similar to the one cited here <a href="http://www.gotw.ca/gotw/071.htm" rel="nofollow">http://www.gotw.ca/gotw/071.htm</a> but not the same: in the item of Sutter's book he answered to the question that a class C MUST PROVIDE a member function with a particular signature, else the program won't compile. In my problem I need to do something if a class has that function, else do "something else". </p> <p>A similar problem was faced by boost::serialization but I don't like the solution they adopted: a template function that invokes by default a free function (that you have to define) with a particular signature unless you define a particular member function (in their case "serialize" that takes 2 parameters of a given type) with a particular signature, else a compile error will happens. That is to implement both intrusive and non-intrusive serialization. </p> <p>I don't like that solution for two reasons: 1) to be non intrusive you must override the global "serialize" function that is in boost::serialization namespace, so you have IN YOUR CLIENT CODE to open namespace boost and namespace serialization!! And a second, practical reason, is because the stack to resolve that mess was 10 to 12 function invocation... and I'm a game developer.</p> <p>I need to define a custom behavior for classes that has not that member function, and my entities are inside different namespaces (and I don't want to override a global function defined in one namespace while I'm in another one)</p> <p>Can you give me an hint to solve this puzzle?</p> <p>EDIT: @Chris Jester-Young I know well Koenig lookup. In fact I was surprised of what they did in documentation (<a href="http://www.boost.org/doc/libs/1_36_0/libs/serialization/doc/index.html" rel="nofollow">http://www.boost.org/doc/libs/1_36_0/libs/serialization/doc/index.html</a>)</p> <p>why open the boost::serialization namespace?</p> <p>but you are not answering to my question: I don't want to do the same thing of boost::serialization. Maybe I decide to do "nothing" if the class has not that function with that signature. in boost::serialization if you don't have that member function OR if you don't override global "serialize" function... compile error! I don't want this.</p> <p>EDIT: @Tom Leys I'm sorry that's not what I expected as answer. What you suggest me is not what I want. If you read the link to the gotw site (old site of Herb Sutter) you'll discover that your solution is both intrusive (and I don't want) and it doesn't solve the problem with the signature and it doesn't solve the fact that I can accept classes that don't have that member function... It's a bit more tricky.</p> http://stackoverflow.com/questions/661862/c-memory-management-for-texture-streaming-in-videogames 13 C++ Memory Management for Texture Streaming in Videogames ugasoft 2009-03-19T11:35:07Z 2009-07-12T14:13:09Z <p>Hi, this is a "hard" question. I've found nothing interesting over the web.</p> <p>I'm developing a Memory Management module for my company. We develop games for next-gen consoles (Xbox 360, PS3 and PC... we consider PC a console!).</p> <p>We'll need in future, for our next games, to handle texture streaming for large game worlds that cannot be loaded all in main console memory (not talking about PC for now).</p> <p>We are going to stream at the beginning hi-res mipmaps of textures (that is about 70% of the size of world data). Maybe in the future we'll have to stream also geometry, smaller mipmaps, audio, etc.</p> <p>I'm developing a Memory Manager for that issue, focused on X360 (because over PS3 we can use host memory and the associated, auto-defragmenting GMM allocator).</p> <p>The problem I'm facing is the following: We have decided to reserve a specific Memory Area for texture streaming (for example 64 Megabytes) and we want to handle all allocations and deallocations in that area. We have allocated the area at the beginning of the application and the area is Physically guaranteed to be contiguous (not just virtually, cause we need to store textures there).</p> <p>I've implemented an auto defragmenting allocator, using handles instead of pointers. Time is not an issue, the problem is memory fragmentation. In game we continuously load and unload streaming targets, so we'd like to use the maximum amount of our buffer (64 Megabytes).</p> <p>With this allocator we can use all of the allocated space but the defragmentation routine works in an unaccettable time (sometimes 60 milliseconds, more than a frames!) while the algorithm is not too bad... there are just too meny unevitable memcpy!</p> <p>I'm looking for a solution to solve this issue. I'd like to find at least a good paper, or a post-mortem, or someone who have faced the same problem of mine.</p> <p>Now I'm choosing between two strategies: 1) move the defragmentation routine on a dedicated thread (good for X360 with 6 hw threads, bad for PS3 with just a hw thread... and don't tell me to use SPU's!) with all multithreading problems of locking regions, of accessing a region who is being moved,... 2) find an "incremental" solution to defragmentation problem: we can give each frame a time budget (for example up to 1 millisecond) for defragmentation and the Memory Manager will do what it can do in the budget each frame.</p> <p>Can someone tell me his experience about?</p> http://stackoverflow.com/questions/1048000/books-to-refer-for-learning-oop-through-c/1048072#1048072 2 Answer by ugasoft for Books to refer for learning OOP through C++ ugasoft 2009-06-26T08:52:06Z 2009-06-26T08:52:06Z <p>Accelerated C++ by Andrew Koenig is my favourite</p> http://stackoverflow.com/questions/1047663/how-do-i-declare-template-function-outside-the-class-declaration/1047741#1047741 4 Answer by ugasoft for How do I declare template function outside the class declaration. ugasoft 2009-06-26T07:08:51Z 2009-06-26T07:08:51Z <p>The answer of Naveen is correct, I can add a suggestion: I use extensively typedefs and I'm waiting template typedef and "true type definition" typedef.</p> <pre><code>template &lt;class T1, class T2&gt; class A { public: typedef typename std::vector&lt;std::pair&lt;T1,T2&gt; &gt;::iterator iterator; typedef std::pair&lt;iterator, bool &gt; MyPair; MyPair foo(); }; template &lt;class T1, class T2&gt; typename A&lt;T1,T2&gt;::MyPair A&lt;T1, T2&gt;::foo() { iterator aIter; return MyPair(aIter ,false); } </code></pre> http://stackoverflow.com/questions/329289/really-wow-them-in-the-interview/461520#461520 0 Answer by ugasoft for Really "wow" them in the interview ugasoft 2009-01-20T14:29:32Z 2009-01-20T14:29:32Z <p>did you read this? <a href="http://www.joelonsoftware.com/articles/GuerrillaInterviewing3.html" rel="nofollow">The Guerrilla Guide to Interviewing</a>, by our "creator" Joel Spolsky</p> http://stackoverflow.com/questions/38210/what-non-programming-books-should-programmers-read/450434#450434 71 Answer by ugasoft for What non-programming books should programmers read? ugasoft 2009-01-16T13:41:40Z 2009-01-16T13:41:40Z <p><strong>Flatland</strong>, by Abbott <img src="http://upload.wikimedia.org/wikipedia/commons/5/51/Flatland_cover.jpg" alt="alt text" /></p> http://stackoverflow.com/questions/269241/theres-a-way-to-declare-copy-constructor-non-public-and-using-default-copy-const 0 There's a way to declare Copy Constructor non-public AND using default copy Constructor? ugasoft 2008-11-06T16:02:54Z 2008-11-06T16:26:10Z <p>I have a not-so-small class under development (that it changes often) and I need not to provide a public copy constructor and copy assignment. The class has objects with value semantics, so default copy and assignment work.</p> <p>the class is in a hierarchy, with virtual methods, so I provide a virtual Clone() to avoid slicing and to perform "polymorphic copy".</p> <p>I don't want to declare copy assignment and construction protected AND to define them (and to maintain in-sync with changes) unless I have some special thing to perform.</p> <p>Do someone knows if there's another way?</p> <p>thanks!</p> <p>UgaSofT</p> http://stackoverflow.com/questions/269241/theres-a-way-to-declare-copy-constructor-non-public-and-using-default-copy-const/269315#269315 0 Answer by ugasoft for There's a way to declare Copy Constructor non-public AND using default copy Constructor? ugasoft 2008-11-06T16:26:10Z 2008-11-06T16:26:10Z <p>Maybe I've found a solution...</p> <p>I can put in my root base class (or I can create a small interface class, with no data members, and perform multiple inheritance) the protected copy constructor that here is empty. I don't redefine the Copy ctor in derived classes, when the default one it's ok. Now the default copy ctor is not accessible to clients (cause the base is not accessible) but default works!</p> <p>There are some objection?</p> http://stackoverflow.com/questions/214891/checklist-for-writing-copy-constuctor-and-assignment-operator-in-c/269221#269221 1 Answer by ugasoft for Checklist for writing copy constuctor and assignment operator in C++ ugasoft 2008-11-06T15:56:20Z 2008-11-06T15:56:20Z <p>try to read this.</p> <p><a href="http://www.icu-project.org/docs/papers/cpp_report/the_anatomy_of_the_assignment_operator.html" rel="nofollow">http://www.icu-project.org/docs/papers/cpp_report/the_anatomy_of_the_assignment_operator.html</a></p> <p>is a very good analysis of Assignment operator</p> http://stackoverflow.com/questions/146452/what-are-pod-types-in-c/146464#146464 0 Answer by ugasoft for What are POD types in C++? ugasoft 2008-09-28T18:41:31Z 2008-09-28T18:41:31Z <p><a href="http://en.wikipedia.org/wiki/Plain_Old_Data_Structures" rel="nofollow">Plain Old Data</a> </p> <p>in short it is all builtin data type (ex: int, char, float, long int, unsigned char, double) and all aggregation of POD data. Yes, it's a recursive definition ;)</p> <p>To be more clear, a POD is what we call 'a struct'.</p> http://stackoverflow.com/questions/146271/what-you-think-about-default-pass-by-reference-semantics-on-c/146451#146451 0 Answer by ugasoft for What you think about default pass-by-reference semantics on C++? ugasoft 2008-09-28T18:36:01Z 2008-09-28T18:36:01Z <p>there are something not clear. when you say:</p> <blockquote> <p>int b(b &amp;param);</p> </blockquote> <p>what did you intend for the second 'b'? did you forget to introduce a type? did you forget to write differently with respect to the first 'b'? don't you think it's clear to write something like:</p> <pre><code>class B{/*something...*/}; int b(B&amp; param); </code></pre> <p>Since now, I suppose that you mean what I write.</p> <p>Now, your question is "don't you think will be better that the compiler will consider every pass-by-value of a non-POD as pass-by-ref?". The first problem is that it will broke your contract. I suppose you mean pass-by-CONST-reference, and not just by reference.</p> <p>Your question now is reduced to this one: "do you know if there's some compilers directive that can optimize function call by value?"</p> <p>The answer now is "I don't know".</p> http://stackoverflow.com/questions/28002/regular-cast-vs-staticcast-vs-dynamiccast/103914#103914 3 Answer by ugasoft for Regular cast vs. static_cast vs. dynamic_cast ugasoft 2008-09-19T17:30:24Z 2008-09-19T17:30:24Z <p>avoid using C-Style cast.</p> <p>C-Style cast is a mix of const and reinterpret cast and it's difficult to find-and-replace in your code. C++ application programmer should avoid c-style cast.</p> http://stackoverflow.com/questions/102009/when-is-it-best-to-use-a-stack-instead-of-a-heap-and-vice-versa/102060#102060 1 Answer by ugasoft for When is it best to use a Stack instead of a Heap and vice versa? ugasoft 2008-09-19T14:04:32Z 2008-09-19T14:04:32Z <p>The question is ill formed.</p> <p>There are situations where you need the stack, others where you need the heap, others where you need the static storage, others where you need the const memory data, others where you need the free store.</p> <p>The stack is fast, because allocation is just an "increment" over the SP, and all "allocation" is performed at invocation time of the function you are in. Heap (or free store) allocation/deallocation is more time expensive and error prone.</p> http://stackoverflow.com/questions/6327/what-are-your-programming-exercises/97098#97098 0 Answer by ugasoft for What are your programming exercises? ugasoft 2008-09-18T21:20:06Z 2008-09-18T21:20:06Z <p>Topcoder and ProjectEuler.</p> <p>Topcoder is a challenging environment where you can be prized and eventually hired... but the competitors are incredibly strong!</p> http://stackoverflow.com/questions/687/keyboard-for-programmers/97031#97031 4 Answer by ugasoft for Keyboard for programmers ugasoft 2008-09-18T21:12:32Z 2008-09-18T21:12:32Z <p>obviously laser keyboard</p> <p><img src="http://www.mavromatic.com/images/ibiz-laserkeyboard.jpg" alt="alt text" /></p> http://stackoverflow.com/questions/96501/perks-for-new-programmers/96652#96652 39 Answer by ugasoft for Perks for new programmers ugasoft 2008-09-18T20:36:53Z 2008-09-18T20:36:53Z <p>give them responsibilities and some degree of freedom.</p> <p>make them feel like they are developing something for themselves, with passion</p> http://stackoverflow.com/questions/96196/when-are-c-macros-beneficial/96427#96427 0 Answer by ugasoft for When are C++ macros beneficial? ugasoft 2008-09-18T20:14:04Z 2008-09-18T20:14:04Z <p>I use no macro in my development.</p> <p>The only #define I use is for conditional compilation (#ifdef #else #endif) but I try to keep their usage at minimum.</p> http://stackoverflow.com/questions/2767/do-you-have-any-recommended-add-ons-plugins-for-microsoft-visual-studio/94098#94098 0 Answer by ugasoft for Do you have any recommended add-ons/plugins for Microsoft Visual Studio? ugasoft 2008-09-18T16:20:36Z 2008-09-18T16:20:36Z <p>Visual Assist: you cannot live without it!</p> http://stackoverflow.com/questions/93954/how-to-programatically-create-videos/93994#93994 1 Answer by ugasoft for How to programatically create videos ? ugasoft 2008-09-18T16:09:52Z 2008-09-18T16:09:52Z <p>in c++ OpenCV (open source Computer Vision library from Intel) let you create an AVI file and just push frames inside...</p> <p>but it's like shooting with a cannon to a fly.</p> http://stackoverflow.com/questions/93668/did-your-masters-degree-help-you-as-a-programmer/93939#93939 0 Answer by ugasoft for Did your masters degree help you as a programmer? ugasoft 2008-09-18T16:04:36Z 2008-09-18T16:04:36Z <p>In Italy, when I got the Master Degree, there were no "Bachelor Degree" (now we split 5 years Laurea in 3 + 2). I've learned so few about Programming while studying. My skills came from the subsequent periods of robotics and Artificial Intelligence research. And a good mentor is what everyone needs to enlights himself.</p> <p>go find a good mentor.</p> http://stackoverflow.com/questions/47981/how-do-you-set-clear-and-toggle-a-single-bit-in-c/93906#93906 5 Answer by ugasoft for How do you set, clear and toggle a single bit in C? ugasoft 2008-09-18T16:01:18Z 2008-09-18T16:01:18Z <p>read this: <a href="http://graphics.stanford.edu/~seander/bithacks.html" rel="nofollow">http://graphics.stanford.edu/~seander/bithacks.html</a></p> <p>and, when you'll master this, read this one: <a href="http://realtimecollisiondetection.net/blog/?p=78" rel="nofollow">http://realtimecollisiondetection.net/blog/?p=78</a></p> http://stackoverflow.com/questions/93039/where-are-static-variables-stored-in-c-c/93188#93188 1 Answer by ugasoft for Where are static variables stored (in C/C++)? ugasoft 2008-09-18T14:43:35Z 2008-09-18T14:43:35Z <p>in the "global and static" area :)</p> <p>there are several memory area in C++</p> <ul> <li>heap</li> <li>free store</li> <li>stack</li> <li>global &amp; static</li> <li>const</li> </ul> <p>see <a href="http://www.gotw.ca/gotw/009.htm" rel="nofollow">here</a> for detailed answer to your question</p> http://stackoverflow.com/questions/8440/visual-studio-optimizations/92156#92156 1 Answer by ugasoft for Visual Studio Optimizations ugasoft 2008-09-18T12:38:16Z 2008-09-18T12:38:16Z <p>I suggest the reading of "Visual Studio Hacks" by James Avery. There are a lot of hint to better use your favorite IDE ;)</p> http://stackoverflow.com/questions/90272/game-programming-library-c/90637#90637 15 Answer by ugasoft for Game Programming Library C++ ugasoft 2008-09-18T07:05:55Z 2008-09-18T07:05:55Z <p>Ogre is the best Graphic Engine available for free. Ogre doesn't cover all field a game engine should do. Ogre doesn't handle physics, networking, AI, audio...</p> <p>If you want to collect a good set of free libraries I suggest you to use </p> <ul> <li>OGRE for graphics</li> <li>Bullets (or ODE) for physics</li> <li>Raknet for Networking and MatchMaking</li> <li>"something else" for audio and AI</li> </ul> <p>If you need something powerfull (but expensive) I suggest you C4 Engine (350$) or Torque (150$).</p> http://stackoverflow.com/questions/52608/is-subversion-version-control-necessary-for-a-small-development-group-1-2-prog/87677#87677 1 Answer by ugasoft for Is Subversion (Version Control) Necessary For A Small Development Group (1-2 programmers)? ugasoft 2008-09-17T21:07:50Z 2008-09-17T21:07:50Z <p>you need source control if at least ONE of the following is true:</p> <p>1) there are more than ONE developer</p> <p>2) the project is more than ONE mounth long</p> <p>3) the project has more than 5000 lines of code</p> <p>so, if you are two persons you need to use version control. Also if you are alone but your project reach a not trivial complexity... you need version control!</p> http://stackoverflow.com/questions/84427/is-it-legal-to-pass-a-newly-constructed-object-by-reference-to-a-function/84505#84505 0 Answer by ugasoft for Is it legal to pass a newly constructed object by reference to a function? ugasoft 2008-09-17T15:30:01Z 2008-09-17T15:30:01Z <p>for //2 you need a const reference</p> <p>for //1 I think it's legal but useless</p> http://stackoverflow.com/questions/81677/whats-your-motto-as-a-developer-programmer/82167#82167 1 Answer by ugasoft for What's Your Motto As A Developer/Programmer? ugasoft 2008-09-17T11:26:10Z 2008-09-17T11:26:10Z <p>Everything can be solved using an extra-level of indirection</p> http://stackoverflow.com/questions/79244/how-to-enforce-all-children-to-override-the-parents-clone-method/82127#82127 0 Answer by ugasoft for How to enforce all children to override the parent's Clone() method? ugasoft 2008-09-17T11:20:13Z 2008-09-17T11:20:13Z <p>read <a href="http://www.gotw.ca/gotw/071.htm" rel="nofollow">this</a> by herb sutter. It's exactly what you are asking</p> http://stackoverflow.com/questions/661862/c-memory-management-for-texture-streaming-in-videogames/1116105#1116105 Comment by ugasoft on C++ Memory Management for Texture Streaming in Videogames ugasoft 2009-10-02T13:32:52Z 2009-10-02T13:32:52Z don't you have rectangular textures? we have also 512x1024, 256x512 and 256x1024 (but we avoided 2048 textures). This will lead to a lot of &quot;fixed sizes&quot;... http://stackoverflow.com/questions/661862/c-memory-management-for-texture-streaming-in-videogames/661983#661983 Comment by ugasoft on C++ Memory Management for Texture Streaming in Videogames ugasoft 2009-10-02T13:15:22Z 2009-10-02T13:15:22Z great link, great answer! Thanks a lot! http://stackoverflow.com/questions/234075/what-is-your-best-programmer-joke/236716#236716 Comment by ugasoft on What is your best programmer joke? ugasoft 2009-01-16T14:40:53Z 2009-01-16T14:40:53Z what about your &quot;private members&quot;? LOL http://stackoverflow.com/questions/234075/what-is-your-best-programmer-joke/236736#236736 Comment by ugasoft on What is your best programmer joke? ugasoft 2009-01-16T13:58:19Z 2009-01-16T13:58:19Z ahahhahaha GENIUS!!! http://stackoverflow.com/questions/406760/whats-your-most-controversial-programming-opinion/407051#407051 Comment by ugasoft on What's your most controversial programming opinion? ugasoft 2009-01-09T11:20:46Z 2009-01-09T11:20:46Z you are great. Best answer! I've lost my girlfriend for &quot;deep programming&quot; and I will never forgive myself. http://stackoverflow.com/questions/269241/theres-a-way-to-declare-copy-constructor-non-public-and-using-default-copy-const/269313#269313 Comment by ugasoft on There's a way to declare Copy Constructor non-public AND using default copy Constructor? ugasoft 2008-11-07T09:16:50Z 2008-11-07T09:16:50Z ok, you convinced me! I accept your answer. http://stackoverflow.com/questions/269241/theres-a-way-to-declare-copy-constructor-non-public-and-using-default-copy-const/269313#269313 Comment by ugasoft on There's a way to declare Copy Constructor non-public AND using default copy Constructor? ugasoft 2008-11-06T17:39:55Z 2008-11-06T17:39:55Z yes but who ensures me that some code-criminal will not perform something like *sp1 = *sp2 ?? http://stackoverflow.com/questions/269241/theres-a-way-to-declare-copy-constructor-non-public-and-using-default-copy-const Comment by ugasoft on There's a way to declare Copy Constructor non-public AND using default copy Constructor? ugasoft 2008-11-06T17:05:08Z 2008-11-06T17:05:08Z Yes, I want to have the default copy ctor available for internal use, but just not public. http://stackoverflow.com/questions/269241/theres-a-way-to-declare-copy-constructor-non-public-and-using-default-copy-const/269313#269313 Comment by ugasoft on There's a way to declare Copy Constructor non-public AND using default copy Constructor? ugasoft 2008-11-06T16:47:01Z 2008-11-06T16:47:01Z Maybe you are right... But just because I use my object itself via smart pointers... But I will sleep without nightmare if I'm sure none can copy my objects! http://stackoverflow.com/questions/269241/theres-a-way-to-declare-copy-constructor-non-public-and-using-default-copy-const/269313#269313 Comment by ugasoft on There's a way to declare Copy Constructor non-public AND using default copy Constructor? ugasoft 2008-11-06T16:30:11Z 2008-11-06T16:30:11Z yes, it's possible. In my hierarchy I use Smart pointers to base classes of another hierarchy... The actual types of the data pointed by my smart pointers will be decided by derived classes, and deep copy is performed by virtual cloning. Default copy ctor is ok, so I have a value class. http://stackoverflow.com/questions/152005/how-can-currying-be-done-in-c/152021#152021 Comment by ugasoft on How can currying be done in C++? ugasoft 2008-09-30T08:59:33Z 2008-09-30T08:59:33Z &gt; C++ STL binders provide an implementation of this in C++. yes, but only for unary and binary functions... http://stackoverflow.com/questions/146452/what-are-pod-types-in-c/146464#146464 Comment by ugasoft on What are POD types in C++? ugasoft 2008-09-28T21:52:50Z 2008-09-28T21:52:50Z obviously... struct and class are almost equivalent, but in &quot;the business&quot; we call 'a struct' a simple data collector, usually without ctors and dtor, usually with value semantics... http://stackoverflow.com/questions/100549/is-there-minimum-expected-period-of-employment/100616#100616 Comment by ugasoft on Is There Minimum "Expected" Period of Employment? ugasoft 2008-09-19T10:13:10Z 2008-09-19T10:13:10Z as italian, I quoted you ;) http://stackoverflow.com/questions/93039/where-are-static-variables-stored-in-c-c/93079#93079 Comment by ugasoft on Where are static variables stored (in C/C++)? ugasoft 2008-09-18T14:45:21Z 2008-09-18T14:45:21Z no. static keyworld has overloaded meanings: in such a case static is storage modifier, not linkage modifier. http://stackoverflow.com/questions/80619/helper-functions-in-c/80804#80804 Comment by ugasoft on 'Helper' functions in C++ ugasoft 2008-09-18T13:52:25Z 2008-09-18T13:52:25Z I agree with graham.reeds. you cannot fwd a enum, which size depends of actual values of emun labels