From: <arn...@us...> - 2008-01-01 15:28:57
|
Revision: 119 http://adchpp.svn.sourceforge.net/adchpp/?rev=119&view=rev Author: arnetheduck Date: 2008-01-01 07:28:48 -0800 (Tue, 01 Jan 2008) Log Message: ----------- Remove socketmanager from swig interface Modified Paths: -------------- adchpp/trunk/Doxyfile adchpp/trunk/swig/adchpp.i Modified: adchpp/trunk/Doxyfile =================================================================== --- adchpp/trunk/Doxyfile 2007-12-31 20:15:30 UTC (rev 118) +++ adchpp/trunk/Doxyfile 2008-01-01 15:28:48 UTC (rev 119) @@ -91,7 +91,7 @@ # Doxygen will generate a detailed section even if there is only a brief # description. -ALWAYS_DETAILED_SEC = NO +ALWAYS_DETAILED_SEC = YES # If the INLINE_INHERITED_MEMB tag is set to YES, doxygen will show all # inherited members of a class in the documentation of that class as if those @@ -476,7 +476,7 @@ # $version, which will be replaced by the version of the file (if it could # be obtained via FILE_VERSION_FILTER) -WARN_FORMAT = "$file:$line: $text " +WARN_FORMAT = "$file:$line: $text " # The WARN_LOGFILE tag can be used to specify a file to which warning # and error messages should be written. If left blank the output is written @@ -750,7 +750,7 @@ # the HTML help compiler (hhc.exe). If non-empty doxygen will try to run # the HTML help compiler on the generated index.hhp. -HHC_LOCATION = "C:\Program Files\HTML Help Workshop\hhc.exe " +HHC_LOCATION = "C:\Program Files\HTML Help Workshop\hhc.exe " # If the GENERATE_HTMLHELP tag is set to YES, the GENERATE_CHI flag # controls if a separate .chi index file is generated (YES) or that @@ -1071,8 +1071,8 @@ # instead of the = operator. PREDEFINED = _REENTRANT \ - "GETSETREF(a,b,c)=private: a b; public: const a& get##c() const {}; void set##c(const a&) {}; " \ - "GETSET(a,b,c)=private: a b; public: a get##c() const {}; void set##c(a) {}; " + "GETSETREF(a,b,c)=private: a b; public: const a& get##c() const {}; void set##c(const a&) {}; " \ + "GETSET(a,b,c)=private: a b; public: a get##c() const {}; void set##c(a) {}; " # If the MACRO_EXPANSION and EXPAND_ONLY_PREDEF tags are set to YES then # this tag can be used to specify a list of macro names that should be expanded. Modified: adchpp/trunk/swig/adchpp.i =================================================================== --- adchpp/trunk/swig/adchpp.i 2007-12-31 20:15:30 UTC (rev 118) +++ adchpp/trunk/swig/adchpp.i 2008-01-01 15:28:48 UTC (rev 119) @@ -12,7 +12,6 @@ #include <adchpp/Exception.h> #include <adchpp/PluginManager.h> #include <adchpp/TigerHash.h> -#include <adchpp/SocketManager.h> using namespace adchpp; @@ -64,7 +63,6 @@ %nodefaultdtor SettingsManager; %nodefaultdtor Util; %nodefaultdtor PluginManager; -%nodefaultdtor SocketManager; namespace adchpp { class Client; @@ -513,10 +511,6 @@ } } -class SocketManager { - public: -}; - class ClientManager { public: @@ -744,6 +738,5 @@ LogManager* getLM() { return LogManager::getInstance(); } SettingsManager* getSM() { return SettingsManager::getInstance(); } PluginManager* getPM() { return PluginManager::getInstance(); } - SocketManager* getSocketManager() { return SocketManager::getInstance(); } } %} This was sent by the SourceForge.net collaborative development platform, the world's largest Open Source development site. |