Mercurial > audlegacy
changeset 2119:6d7381072a45 trunk
[svn] - fix example
author | nenolod |
---|---|
date | Wed, 13 Dec 2006 23:15:44 -0800 |
parents | 36d4043b3df2 |
children | 1d67cf383e32 |
files | ChangeLog libaudacious++/configdb.hh |
diffstat | 2 files changed, 12 insertions(+), 2 deletions(-) [+] |
line wrap: on
line diff
--- a/ChangeLog Wed Dec 13 22:46:29 2006 -0800 +++ b/ChangeLog Wed Dec 13 23:15:44 2006 -0800 @@ -1,3 +1,13 @@ +2006-12-14 06:46:29 +0000 William Pitcock <nenolod@nenolod.net> + revision [3241] + - add the starting point of some audacious C++ bindings + + trunk/libaudacious++/Makefile | 35 ++++++++++ + trunk/libaudacious++/configdb.cxx | 121 ++++++++++++++++++++++++++++++++++++++ + trunk/libaudacious++/configdb.hh | 75 +++++++++++++++++++++++ + 3 files changed, 231 insertions(+) + + 2006-12-14 04:38:24 +0000 William Pitcock <nenolod@nenolod.net> revision [3239] - use str_has_prefix_nocase instead of a literal compare on extension
--- a/libaudacious++/configdb.hh Wed Dec 13 22:46:29 2006 -0800 +++ b/libaudacious++/configdb.hh Wed Dec 13 23:15:44 2006 -0800 @@ -18,10 +18,10 @@ * Usage example: * * { - * Audacious::ConfigDb foo; + * Audacious::ConfigDB foo; * Audacious::ConfValue *bar; * - * bar = foo.GetValue("bar", "filter"); + * bar = foo.GetValue("bar", "filter", Audacious::ConfigDB::String); * std::string filter = bar->asString(); * delete bar; *