]> git.llucax.com Git - z.facultad/75.42/plaqui.git/commitdiff
Se pasa el destructor al .cpp.
authorLeandro Lucarella <llucax@gmail.com>
Thu, 23 Oct 2003 01:25:42 +0000 (01:25 +0000)
committerLeandro Lucarella <llucax@gmail.com>
Thu, 23 Oct 2003 01:25:42 +0000 (01:25 +0000)
Server/include/plaqui/server/request.h
Server/include/plaqui/server/string.h
Server/src/request.cpp
Server/src/string.cpp

index 86541bcc815d5484171c8dff0ed5bb0fb85393b6..d20b85f2d43cd85dd325407bc59d1c9403e8186f 100644 (file)
@@ -72,7 +72,7 @@ namespace Server {
                        /**
                         * Destructor.
                         */
-                       virtual ~Request(void) {}
+                       virtual ~Request(void);
 
                        /**
                         * Agrega variables con un request HTTP.
index 8ab2b8f447ffd4a10b594853d6135a2db8e998ab..53752e444cefbb791b2ccd8a24ab35ed045be8ea 100644 (file)
@@ -45,7 +45,7 @@ namespace Server {
                        /**
                         * Destructor.
                         */
-                       virtual ~String(void) {}
+                       virtual ~String(void);
 
                        /**
                         * Constructor.
index d17ca72bbed0757d73c5244bef7273a5a6124647..9e6aadf07d3bac689b012e423ba224b0101462f9 100644 (file)
@@ -61,6 +61,9 @@ PlaQui::Server::Request::CHARS_UNRESERVED = CHARS_ALPHANUM + CHARS_MARK;
 const std::string
 PlaQui::Server::Request::CHARS_HEX = CHARS_DIGIT + std::string("abcdefABCDEF");
 
+PlaQui::Server::Request::~Request(void) {
+}
+
 void PlaQui::Server::Request::set_request(const std::string& req,
                const std::string& host, unsigned port) {
 #ifdef DEBUG
index edc522c3d17a6c4312205d5f74df1978175592ae..7062bb0ab222e76ddead307c629748dbfaa77f54 100644 (file)
 #endif // DEBUG
 
 const std::string PlaQui::Server::String::SPACE_CHARS = " \t\n\r";
-                       
+
+PlaQui::Server::String::~String(void) {
+}
+
 PlaQui::Server::String::String(const std::string& str):
                std::string(str.c_str()) {
 }