gnash-commit
[Top][All Lists]
Advanced

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

[Gnash-commit] /srv/bzr/gnash/rtmp r10020: Cleaned up DSOEXPORTS


From: Markus Gothe
Subject: [Gnash-commit] /srv/bzr/gnash/rtmp r10020: Cleaned up DSOEXPORTS
Date: Mon, 23 Feb 2009 02:30:57 +0100
User-agent: Bazaar (1.5)

------------------------------------------------------------
revno: 10020
committer: Markus Gothe <address@hidden>
branch nick: rtmp
timestamp: Mon 2009-02-23 02:30:57 +0100
message:
  Cleaned up DSOEXPORTS
modified:
  cygnal/crc.h
  cygnal/http_server.h
  cygnal/rtmp_server.h
=== modified file 'cygnal/crc.h'
--- a/cygnal/crc.h      2008-11-03 19:33:59 +0000
+++ b/cygnal/crc.h      2009-02-23 01:30:57 +0000
@@ -1,5 +1,5 @@
 // 
-//   Copyright (C) 2005, 2006, 2007, 2008 Free Software Foundation, Inc.
+//   Copyright (C) 2005, 2006, 2007, 2008, 2009 Free Software Foundation, Inc.
 // 
 // This program is free software; you can redistribute it and/or modify
 // it under the terms of the GNU General Public License as published by
@@ -27,6 +27,7 @@
 #include <vector>
 #include <iostream> // for output operator
 
+#include "dsodefs.h"
 #include "rc.h"
 
 /// \namespace cygnal
@@ -39,11 +40,11 @@
 ///    This class handles reading values from the Cygnal
 ///    configuration file, .cygnalrc, and into a form we can use in
 ///    Cygnal.
-class DSOEXPORT CRcInitFile : public gnash::RcInitFile
+class CRcInitFile : public gnash::RcInitFile
 {
 public:
     /// \brief Return the default instance of RC file,
-    static CRcInitFile& getDefaultInstance();
+    DSOEXPORT static CRcInitFile& getDefaultInstance();
     
     /// \brief Load all the configuration files.
     ///                This includes parsing the default .gnashrc file for
@@ -95,10 +96,10 @@
 
     /// \brief Dump the internal data of this class in a human readable form.
     /// @remarks This should only be used for debugging purposes.
-    void dump() const { dump(std::cerr); }
+    DSOEXPORT void dump() const { dump(std::cerr); }
     
     /// \overload dump(std::ostream& os) const
-    void dump(std::ostream& os) const;
+    DSOEXPORT void dump(std::ostream& os) const;
     
   private:
     /// Construct only by getDefaultInstance()

=== modified file 'cygnal/http_server.h'
--- a/cygnal/http_server.h      2009-02-22 01:41:59 +0000
+++ b/cygnal/http_server.h      2009-02-23 01:30:57 +0000
@@ -40,7 +40,7 @@
 namespace cygnal
 {
     
-class DSOEXPORT HTTPServer : public gnash::HTTP
+class HTTPServer : public gnash::HTTP
 {
 public:
     HTTPServer();

=== modified file 'cygnal/rtmp_server.h'
--- a/cygnal/rtmp_server.h      2009-02-22 01:41:59 +0000
+++ b/cygnal/rtmp_server.h      2009-02-23 01:30:57 +0000
@@ -35,7 +35,7 @@
 namespace cygnal
 {
 
-class DSOEXPORT RTMPServer : public gnash::RTMP
+class RTMPServer : public gnash::RTMP
 {
 public:
     RTMPServer();


reply via email to

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