|
From: Foster B. <fos...@us...> - 2005-04-13 16:21:57
|
Update of /cvsroot/adobe-source/sandbox/adobe-source/adobe/source In directory sc8-pr-cvs1.sourceforge.net:/tmp/cvs-serv2921/adobe-source/adobe/source Modified Files: eve.cpp xstr.cpp Log Message: Beginning widget library documenation; more config.hpp options (thanks Boost!) Index: xstr.cpp =================================================================== RCS file: /cvsroot/adobe-source/sandbox/adobe-source/adobe/source/xstr.cpp,v retrieving revision 1.5 retrieving revision 1.6 diff -C2 -d -r1.5 -r1.6 *** xstr.cpp 12 Apr 2005 18:54:52 -0000 1.5 --- xstr.cpp 13 Apr 2005 16:21:15 -0000 1.6 *************** *** 295,306 **** adobe::remove_const(attribute_context) = adobe::name_t("context"); ! #if ADOBE_PLATFORM_MAC ! default_context_s.push_back(std::make_pair(attribute_platform, adobe::static_name_t("macintosh"))); #elif ADOBE_PLATFORM_WIN ! default_context_s.push_back(std::make_pair(attribute_platform, adobe::static_name_t("windows"))); #else ! default_context_s.push_back(std::make_pair(attribute_platform, adobe::static_name_t("unknown"))); #endif ! default_context_s.push_back(std::make_pair(attribute_lang, adobe::static_name_t("en-us"))); --- 295,327 ---- adobe::remove_const(attribute_context) = adobe::name_t("context"); ! default_context_s.push_back(std::make_pair(attribute_platform, adobe::static_name_t( ! #if ADOBE_PLATFORM_LINUX ! "linux" ! #elif ADOBE_PLATFORM_BSD ! "bsd" ! #elif ADOBE_PLATFORM_SOLARIS ! "solaris" ! #elif ADOBE_PLATFORM_IRIX ! "irix" ! #elif ADOBE_PLATFORM_HPUX ! "hpux" ! #elif ADOBE_PLATFORM_CYGWIN ! "cygwin" #elif ADOBE_PLATFORM_WIN ! "windows" ! #elif ADOBE_PLATFORM_BEOS ! "beos" ! #elif ADOBE_PLATFORM_MAC ! "macintosh" ! #elif ADOBE_PLATFORM_AIX ! "aix" ! #elif ADOBE_PLATFORM_AMIGA ! "amiga" ! #elif ADOBE_PLATFORM_UNIX ! "unix" #else ! "unknown" #endif ! ))); default_context_s.push_back(std::make_pair(attribute_lang, adobe::static_name_t("en-us"))); *************** *** 706,710 **** content ! = *( boost::spirit::print_p - '<' ) ; --- 727,731 ---- content ! = *( ( boost::spirit::space_p | boost::spirit::print_p ) - boost::spirit::ch_p('<') ) ; Index: eve.cpp =================================================================== RCS file: /cvsroot/adobe-source/sandbox/adobe-source/adobe/source/eve.cpp,v retrieving revision 1.6 retrieving revision 1.7 diff -C2 -d -r1.6 -r1.7 *** eve.cpp 13 Apr 2005 12:30:28 -0000 1.6 --- eve.cpp 13 Apr 2005 16:21:15 -0000 1.7 *************** *** 24,27 **** --- 24,29 ---- #include <adobe/eve.hpp> + #include <adobe/cmath.hpp> + #include <adobe/algorithm.hpp> #include <adobe/functional.hpp> *************** *** 41,50 **** /*************************************************************************************************/ - #if defined(ADOBE_PLATFORM_WIN) || defined(ADOBE_PLATFORM_UNIX) - #include <cmath> - #endif - - /*************************************************************************************************/ - namespace adobe { --- 43,46 ---- |