certi-cvs
[Top][All Lists]
Advanced

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

[certi-cvs] certi include/certi.hh libCERTI/AuditLine.hh li...


From: certi-cvs
Subject: [certi-cvs] certi include/certi.hh libCERTI/AuditLine.hh li...
Date: Sat, 20 Mar 2010 17:30:37 +0000

CVSROOT:        /sources/certi
Module name:    certi
Changes by:     Petr Gotthard <gotthardp>       10/03/20 17:30:37

Modified files:
        include        : certi.hh 
        libCERTI       : AuditLine.hh Named.hh Socket.hh 

Log message:
        Fixed some Visual Studio warnings.

CVSWeb URLs:
http://cvs.savannah.gnu.org/viewcvs/certi/include/certi.hh?cvsroot=certi&r1=3.46&r2=3.47
http://cvs.savannah.gnu.org/viewcvs/certi/libCERTI/AuditLine.hh?cvsroot=certi&r1=3.10&r2=3.11
http://cvs.savannah.gnu.org/viewcvs/certi/libCERTI/Named.hh?cvsroot=certi&r1=3.10&r2=3.11
http://cvs.savannah.gnu.org/viewcvs/certi/libCERTI/Socket.hh?cvsroot=certi&r1=3.18&r2=3.19

Patches:
Index: include/certi.hh
===================================================================
RCS file: /sources/certi/certi/include/certi.hh,v
retrieving revision 3.46
retrieving revision 3.47
diff -u -b -r3.46 -r3.47
--- include/certi.hh    14 Mar 2010 14:38:27 -0000      3.46
+++ include/certi.hh    20 Mar 2010 17:30:37 -0000      3.47
@@ -16,7 +16,7 @@
 // License along with this program ; if not, write to the Free Software
 // Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA
 //
-// $Id: certi.hh,v 3.46 2010/03/14 14:38:27 gotthardp Exp $
+// $Id: certi.hh,v 3.47 2010/03/20 17:30:37 gotthardp Exp $
 // ----------------------------------------------------------------------------
 
 #ifndef CERTI_HH_INCLUDED
@@ -25,6 +25,8 @@
     #define    STAT_FUNCTION         _stat
     #define    STAT_STRUCT           struct _stat
     #ifdef _MSC_VER
+        // Visual C++ does not support declarations using exceptions 
specification
+        #pragma warning(disable: 4290)
         typedef unsigned __int64        uint64_t;
         typedef __int64                         int64_t;
         typedef unsigned __int32       uint32_t;
@@ -299,4 +301,4 @@
        (uint64_t) CERTI_INT64_CONSTANT(0xff00000000000000U)) >> 56)))
 #endif // CERTI_HH_INCLUDED
 
-// $Id: certi.hh,v 3.46 2010/03/14 14:38:27 gotthardp Exp $
+// $Id: certi.hh,v 3.47 2010/03/20 17:30:37 gotthardp Exp $

Index: libCERTI/AuditLine.hh
===================================================================
RCS file: /sources/certi/certi/libCERTI/AuditLine.hh,v
retrieving revision 3.10
retrieving revision 3.11
diff -u -b -r3.10 -r3.11
--- libCERTI/AuditLine.hh       19 Nov 2009 18:15:31 -0000      3.10
+++ libCERTI/AuditLine.hh       20 Mar 2010 17:30:37 -0000      3.11
@@ -19,7 +19,7 @@
 // Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307
 // USA
 //
-// $Id: AuditLine.hh,v 3.10 2009/11/19 18:15:31 erk Exp $
+// $Id: AuditLine.hh,v 3.11 2010/03/20 17:30:37 gotthardp Exp $
 // ----------------------------------------------------------------------------
 
 #ifndef _CERTI_AUDIT_LINE_HH
@@ -33,7 +33,7 @@
 
 namespace certi {
 
-class AuditLine {
+class CERTI_EXPORT AuditLine {
 
 public:
     AuditLine();
@@ -67,4 +67,4 @@
 
 #endif // _CERTI_AUDIT_LINE_HH
 
-// $Id: AuditLine.hh,v 3.10 2009/11/19 18:15:31 erk Exp $
+// $Id: AuditLine.hh,v 3.11 2010/03/20 17:30:37 gotthardp Exp $

Index: libCERTI/Named.hh
===================================================================
RCS file: /sources/certi/certi/libCERTI/Named.hh,v
retrieving revision 3.10
retrieving revision 3.11
diff -u -b -r3.10 -r3.11
--- libCERTI/Named.hh   19 Nov 2009 18:15:31 -0000      3.10
+++ libCERTI/Named.hh   20 Mar 2010 17:30:37 -0000      3.11
@@ -19,12 +19,14 @@
 // Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307
 // USA
 //
-// $Id: Named.hh,v 3.10 2009/11/19 18:15:31 erk Exp $
+// $Id: Named.hh,v 3.11 2010/03/20 17:30:37 gotthardp Exp $
 // ----------------------------------------------------------------------------
 
 #ifndef LIBCERTI_NAMED_HH
 #define LIBCERTI_NAMED_HH
 
+#include "certi.hh"
+
 #include <string>
 
 namespace certi {
@@ -38,7 +40,7 @@
  * "IEEE Standard for Modeling and Simulation (M&S) High Level
  *  Architecture (HLA)—Object Model Template (OMT) Specification"
  */
-class Named
+class CERTI_EXPORT Named
 {
 public:
        /**
@@ -130,4 +132,4 @@
 
 #endif // LIBCERTI_NAMED_HH
 
-// $Id: Named.hh,v 3.10 2009/11/19 18:15:31 erk Exp $
+// $Id: Named.hh,v 3.11 2010/03/20 17:30:37 gotthardp Exp $

Index: libCERTI/Socket.hh
===================================================================
RCS file: /sources/certi/certi/libCERTI/Socket.hh,v
retrieving revision 3.18
retrieving revision 3.19
diff -u -b -r3.18 -r3.19
--- libCERTI/Socket.hh  15 Jan 2010 15:07:19 -0000      3.18
+++ libCERTI/Socket.hh  20 Mar 2010 17:30:37 -0000      3.19
@@ -44,7 +44,7 @@
 
 namespace certi {
 
-class Socket
+class CERTI_EXPORT Socket
 {
 public:
        typedef unsigned long ByteCount_t;




reply via email to

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