myserver-commit
[Top][All Lists]
Advanced

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]

[myserver-commit] [SCM] GNU MyServer branch, master, updated. 08f149e93f


From: Giuseppe Scrivano
Subject: [myserver-commit] [SCM] GNU MyServer branch, master, updated. 08f149e93fcb2d2bae81fb4712da05be889ca0ac
Date: Tue, 29 Sep 2009 21:51:14 +0000

This is an automated email from the git hooks/post-receive script. It was
generated because a ref change was pushed to the repository containing
the project "GNU MyServer".

The branch, master has been updated
       via  08f149e93fcb2d2bae81fb4712da05be889ca0ac (commit)
       via  73c9d9f9a5410b280853123cfb7d563c3bf74be3 (commit)
      from  457efd5092d04f2bf79010fd98f3bde3ae44495a (commit)

Those revisions listed above that are new to this repository have
not appeared on any other notification email; so we list those
revisions in full, below.

- Log -----------------------------------------------------------------


commit 08f149e93fcb2d2bae81fb4712da05be889ca0ac
Author: Giuseppe Scrivano <address@hidden>
Date:   Tue Sep 29 23:51:12 2009 +0200

    Declare c'tor and d'tor for the `XmlMainConfiguration' class.

diff --git a/myserver/include/conf/main/xml_main_configuration.h 
b/myserver/include/conf/main/xml_main_configuration.h
index ec82f82..987ae56 100644
--- a/myserver/include/conf/main/xml_main_configuration.h
+++ b/myserver/include/conf/main/xml_main_configuration.h
@@ -27,6 +27,9 @@ along with this program.  If not, see 
<http://www.gnu.org/licenses/>.
 class XmlMainConfiguration : public MainConfiguration
 {
 public:
+  XmlMainConfiguration ();
+  virtual ~XmlMainConfiguration ();
+
   virtual int open (const char* filename)
   {
     return xmlParser.open (filename);
diff --git a/myserver/src/conf/main/xml_main_configuration.cpp 
b/myserver/src/conf/main/xml_main_configuration.cpp
index 637ab4f..0dba02f 100644
--- a/myserver/src/conf/main/xml_main_configuration.cpp
+++ b/myserver/src/conf/main/xml_main_configuration.cpp
@@ -16,3 +16,13 @@
 */
 
 #include <include/conf/main/xml_main_configuration.h>
+
+XmlMainConfiguration::XmlMainConfiguration ()
+{
+
+}
+
+XmlMainConfiguration::~XmlMainConfiguration ()
+{
+
+}



commit 73c9d9f9a5410b280853123cfb7d563c3bf74be3
Author: Giuseppe Scrivano <address@hidden>
Date:   Tue Sep 29 23:47:25 2009 +0200

    Make the `MainConfiguration' class d'tor virtual.

diff --git a/myserver/include/conf/main/main_configuration.h 
b/myserver/include/conf/main/main_configuration.h
index 6dbbc0e..553be84 100644
--- a/myserver/include/conf/main/main_configuration.h
+++ b/myserver/include/conf/main/main_configuration.h
@@ -28,7 +28,7 @@ class MainConfiguration
 {
 public:
   MainConfiguration ();
-  ~MainConfiguration ();
+  virtual ~MainConfiguration ();
   virtual char *getValue (const char* field) = 0;
   virtual char *getValue (string const &field);
   virtual int close ()

-----------------------------------------------------------------------

Summary of changes:
 myserver/include/conf/main/main_configuration.h    |    2 +-
 .../include/conf/main/xml_main_configuration.h     |    3 +++
 myserver/src/conf/main/xml_main_configuration.cpp  |   10 ++++++++++
 3 files changed, 14 insertions(+), 1 deletions(-)


hooks/post-receive
-- 
GNU MyServer




reply via email to

[Prev in Thread] Current Thread [Next in Thread]