-
Thanks a lot for your explanations and the time you spend for these...and your work on muParser of course :-)
I will take a look on muParserX.
Lothar.
2009-06-30 18:43:50 UTC in muParser - A fast math parser library
-
ah, I see. Thats a popularly problem with callback functions.
What's your opinion about that limitation of muParser? It doesn't matter or a constant bother?
I goggled a little and found several approaches, but can't say if they could be combined with muParser by tolerable effort....and if ever a solution :-)
e.g.
http://www.codeguru.com/cpp/cpp/cpp_mfc/callbacks/article.php/c4129...
2009-06-29 21:19:36 UTC in muParser - A fast math parser library
-
Hi Sagar,
Well, I know nothing about .NET but I had the same problem with the Qt library. The solution was to convert QString to std::String like:
QString s = "a+b";
mu::Parser p;
p.SetExpr(s.toStdSting());
This works here. So I 'm surprised that you says std::sting is not accepted by your compiler.
Greetings
Lothar.
2009-06-28 08:39:25 UTC in muParser - A fast math parser library
-
Hello Ingo and everybody else,
I use Ubuntu and try the following...
value_type MyParser::MyAndFunc(value_type a, value_type b)
{
return (a and b);
}
MyParser::MyParser()
{
mParser.DefineOprt("&", &MyParser::MyAndFunc, 0);
}
...and get these compiler error:
MyParser.cpp:36: Fehler: keine passende Funktion für Aufruf von
»mu::Parser::DefineOprt(const...
2009-06-27 08:58:03 UTC in muParser - A fast math parser library
-
Hi David,
you are right. When Marco don't fix the situation it should remove. Did you try to combine both behaviors? I guess there is a need to offer a 5th option in the Candle GUI. Besides Close>Open/Close
2007-04-16 07:57:19 UTC in Qtstalker
-
Hi aprogas@hotmail.com :-)
you are using version 0.33 of Qtstalker. The bug you are reported is fixed in CVS already (the bug I reported here I believe too)
If you like to keep at 0.33 version, you could apply patch 1680923 posted at Tracker by Dr Balwinder.
2007-03-23 16:06:59 UTC in Qtstalker
-
hm Marco, ok it's a beginning ;-)
Do you will also fix the 2nd part of my report? I would like back the single colored behavior when used in CUS.
and, did you noticed my question at the forum?.
2007-03-15 15:53:40 UTC in Qtstalker
-
please look there for my comment
http://sourceforge.net/forum/forum.php?thread_id=1694067&forum_id=80700.
2007-03-15 09:51:03 UTC in Qtstalker
-
look also here
http://sourceforge.net/tracker/index.php?func=detail&aid=1679187&group_id=25632&atid=384883.
2007-03-15 08:29:11 UTC in Qtstalker
-
> The Qt rcfile QSettings is cached and global anyway after the first time QSettings is
> used, so Qt is already optimising reads/writes from the rcfile.
hm, I'm not sure if you understood what I mean.
But to this I like to say, I run in trouble with my RcFile implementation as I define "QSettings settings" global in the header file. This way QT keep a copy of the qtstalkerrc file in memory...
2007-03-13 17:43:20 UTC in Qtstalker