comparison examples/qwt/simpleplot/simple.d @ 381:347e4c7a9ba1

make QwtD compile on Windows@
author Eldar Insafutdinov <e.insafutdinov@gmail.com>
date Sun, 11 Jul 2010 01:59:42 +0100
parents beb04f46ef4a
children bd7f485e3573
comparison
equal deleted inserted replaced
380:beb04f46ef4a 381:347e4c7a9ba1
14 // simple.d 14 // simple.d
15 // 15 //
16 // A simple example which shows how to use QwtPlot and QwtData 16 // A simple example which shows how to use QwtPlot and QwtData
17 //----------------------------------------------------------------- 17 //-----------------------------------------------------------------
18 18
19 // hack to avoid linker error (undefined symbols), possibly a compiler bug
19 real mysin(real arg) 20 real mysin(real arg)
20 { 21 {
21 return sin(arg); 22 return sin(arg);
22 } 23 }
23 24