Skip to content

Platformspecific annotations for developers

Moritz Eyssen edited this page Oct 31, 2013 · 3 revisions

For windows developers

  • Case sensitivity: Don't name something in lowercase on the disk and specify the path in uppercase in the code
  • Backslashes are a way to escape characters, not to separate pathes. Please use forwardslashes.
  • If you use a c/c++ std-function, please make sure you include the appropriate header.
  • Specifying classmembers prefixed a la <type> <ClassName>::<memberName> is not std-conform. Just write <type> <memberName>
  • Don't include windows.h without an #ifdef around it