|
From: <got...@us...> - 2009-07-06 07:12:27
|
Revision: 258
http://scstudio.svn.sourceforge.net/scstudio/?rev=258&view=rev
Author: gotthardp
Date: 2009-07-06 07:12:18 +0000 (Mon, 06 Jul 2009)
Log Message:
-----------
First fixes for Win32 platform.
Modified Paths:
--------------
trunk/src/check/time/time_consistency.h
trunk/tests/bmsc_matrix_converter_test.cpp
trunk/tests/bmsc_tightening_test.cpp
trunk/tests/max_tightener_test.cpp
trunk/tests/tighten_msc_test.cpp
Added Paths:
-----------
trunk/src/check/time/export.h
Property Changed:
----------------
trunk/src/check/time/CMakeLists.txt
trunk/src/check/time/bmsc_tightening.h
trunk/src/check/time/hmsc_all_paths.cpp
trunk/src/check/time/hmsc_all_paths.h
trunk/src/check/time/hmsc_tighten.cpp
trunk/src/check/time/hmsc_tighten.h
trunk/src/check/time/time_consistency.cpp
trunk/src/check/time/time_consistency.h
trunk/tests/bmsc_matrix_converter_test.cpp
trunk/tests/bmsc_tightening_test.cpp
trunk/tests/hmsc_all_paths_test.cpp
trunk/tests/incon_test.cpp
trunk/tests/interval_string.cpp
trunk/tests/max_tightener_test.cpp
trunk/tests/tighten_msc_test.cpp
Property changes on: trunk/src/check/time/CMakeLists.txt
___________________________________________________________________
Added: svn:keywords
+ Id
Added: svn:eol-style
+ native
Property changes on: trunk/src/check/time/bmsc_tightening.h
___________________________________________________________________
Added: svn:keywords
+ Id
Added: svn:eol-style
+ native
Added: trunk/src/check/time/export.h
===================================================================
--- trunk/src/check/time/export.h (rev 0)
+++ trunk/src/check/time/export.h 2009-07-06 07:12:18 UTC (rev 258)
@@ -0,0 +1,37 @@
+/*
+ * scstudio - Sequence Chart Studio
+ * http://scstudio.sourceforge.net
+ *
+ * This library is free software; you can redistribute it and/or
+ * modify it under the terms of the GNU Lesser General Public
+ * License version 2.1, as published by the Free Software Foundation.
+ *
+ * This library is distributed in the hope that it will be useful,
+ * but WITHOUT ANY WARRANTY; without even the implied warranty of
+ * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
+ * Lesser General Public License for more details.
+ *
+ * Copyright (c) 2008 Petr Gotthard <pet...@ce...>
+ *
+ * $Id$
+ */
+
+#ifndef _SCTIME_EXPORT_H
+#define _SCTIME_EXPORT_H
+
+#if defined(_MSC_VER)
+#pragma warning(disable: 4251)
+
+#if defined(sctime_EXPORTS)
+#define SCTIME_EXPORT __declspec(dllexport)
+#else
+#define SCTIME_EXPORT __declspec(dllimport)
+#endif
+
+#else
+#define SCTIME_EXPORT
+#endif
+
+#endif /* _SCTIME_EXPORT_H */
+
+// $Id$
Property changes on: trunk/src/check/time/export.h
___________________________________________________________________
Added: svn:keywords
+ Id
Added: svn:eol-style
+ native
Property changes on: trunk/src/check/time/hmsc_all_paths.cpp
___________________________________________________________________
Added: svn:keywords
+ Id
Added: svn:eol-style
+ native
Property changes on: trunk/src/check/time/hmsc_all_paths.h
___________________________________________________________________
Added: svn:keywords
+ Id
Added: svn:eol-style
+ native
Property changes on: trunk/src/check/time/hmsc_tighten.cpp
___________________________________________________________________
Added: svn:keywords
+ Id
Added: svn:eol-style
+ native
Property changes on: trunk/src/check/time/hmsc_tighten.h
___________________________________________________________________
Added: svn:keywords
+ Id
Added: svn:eol-style
+ native
Property changes on: trunk/src/check/time/time_consistency.cpp
___________________________________________________________________
Added: svn:keywords
+ Id
Added: svn:eol-style
+ native
Modified: trunk/src/check/time/time_consistency.h
===================================================================
--- trunk/src/check/time/time_consistency.h 2009-07-05 21:55:09 UTC (rev 257)
+++ trunk/src/check/time/time_consistency.h 2009-07-06 07:12:18 UTC (rev 258)
@@ -4,6 +4,7 @@
#include "data/msc.h"
#include "data/dfs_events_traverser.h"
#include "check/pseudocode/visual_closure_initiator.h"
+#include "check/time/export.h"
#include <limits>
#include <set>
#include <list>
Property changes on: trunk/src/check/time/time_consistency.h
___________________________________________________________________
Added: svn:keywords
+ Id
Added: svn:eol-style
+ native
Modified: trunk/tests/bmsc_matrix_converter_test.cpp
===================================================================
--- trunk/tests/bmsc_matrix_converter_test.cpp 2009-07-05 21:55:09 UTC (rev 257)
+++ trunk/tests/bmsc_matrix_converter_test.cpp 2009-07-06 07:12:18 UTC (rev 258)
@@ -13,7 +13,7 @@
*
* Copyright (c) 2008 Jindra Babica <ba...@ma...>
*
- * $Id: race_checker_test.cpp 243 2009-05-03 19:05:14Z gotthardp $
+ * $Id$
*/
#include <iostream>
@@ -97,4 +97,4 @@
return 0;
}
-// $Id: race_checker_test.cpp 243 2009-05-03 19:05:14Z gotthardp $
+// $Id$
Property changes on: trunk/tests/bmsc_matrix_converter_test.cpp
___________________________________________________________________
Added: svn:keywords
+ Id
Added: svn:eol-style
+ native
Modified: trunk/tests/bmsc_tightening_test.cpp
===================================================================
--- trunk/tests/bmsc_tightening_test.cpp 2009-07-05 21:55:09 UTC (rev 257)
+++ trunk/tests/bmsc_tightening_test.cpp 2009-07-06 07:12:18 UTC (rev 258)
@@ -141,4 +141,4 @@
return 0;
}
-// $Id: race_checker_test.cpp 243 2009-05-03 19:05:14Z gotthardp $
+// $Id$
Property changes on: trunk/tests/bmsc_tightening_test.cpp
___________________________________________________________________
Added: svn:keywords
+ Id
Added: svn:eol-style
+ native
Property changes on: trunk/tests/hmsc_all_paths_test.cpp
___________________________________________________________________
Added: svn:keywords
+ Id
Added: svn:eol-style
+ native
Property changes on: trunk/tests/incon_test.cpp
___________________________________________________________________
Added: svn:keywords
+ Id
Added: svn:eol-style
+ native
Property changes on: trunk/tests/interval_string.cpp
___________________________________________________________________
Added: svn:keywords
+ Id
Added: svn:eol-style
+ native
Modified: trunk/tests/max_tightener_test.cpp
===================================================================
--- trunk/tests/max_tightener_test.cpp 2009-07-05 21:55:09 UTC (rev 257)
+++ trunk/tests/max_tightener_test.cpp 2009-07-06 07:12:18 UTC (rev 258)
@@ -13,7 +13,7 @@
*
* Copyright (c) 2008 Jindra Babica <ba...@ma...>
*
- * $Id: race_checker_test.cpp 243 2009-05-03 19:05:14Z gotthardp $
+ * $Id$
*/
#include <iostream>
@@ -124,4 +124,4 @@
return 0;
}
-// $Id: race_checker_test.cpp 243 2009-05-03 19:05:14Z gotthardp $
+// $Id$
Property changes on: trunk/tests/max_tightener_test.cpp
___________________________________________________________________
Added: svn:keywords
+ Id
Added: svn:eol-style
+ native
Modified: trunk/tests/tighten_msc_test.cpp
===================================================================
--- trunk/tests/tighten_msc_test.cpp 2009-07-05 21:55:09 UTC (rev 257)
+++ trunk/tests/tighten_msc_test.cpp 2009-07-06 07:12:18 UTC (rev 258)
@@ -13,7 +13,7 @@
*
* Copyright (c) 2008 Jindra Babica <ba...@ma...>
*
- * $Id: race_checker_test.cpp 243 2009-05-03 19:05:14Z gotthardp $
+ * $Id$
*/
#include <iostream>
@@ -129,4 +129,4 @@
return 0;
}
-// $Id: race_checker_test.cpp 243 2009-05-03 19:05:14Z gotthardp $
+// $Id$
Property changes on: trunk/tests/tighten_msc_test.cpp
___________________________________________________________________
Added: svn:keywords
+ Id
Added: svn:eol-style
+ native
This was sent by the SourceForge.net collaborative development platform, the world's largest Open Source development site.
|