aboutsummaryrefslogtreecommitdiff
path: root/cutl/container
diff options
context:
space:
mode:
authorBoris Kolpackov <boris@codesynthesis.com>2010-09-14 19:01:49 +0200
committerBoris Kolpackov <boris@codesynthesis.com>2010-09-14 19:01:49 +0200
commit19d0eb2adcda31d9919bca8fef98cb1871b4ce54 (patch)
tree2e37fd2a976d6ec1f5fa1c49da8c2e5a04dfa440 /cutl/container
parent6aeb2e06e9fa137a8e26f8605ec63f7567e65280 (diff)
Add automake and VC++ builds (meta-build)
Diffstat (limited to 'cutl/container')
-rw-r--r--cutl/container/any.hxx8
-rw-r--r--cutl/container/graph.hxx6
2 files changed, 9 insertions, 5 deletions
diff --git a/cutl/container/any.hxx b/cutl/container/any.hxx
index 8999fbb..feeb302 100644
--- a/cutl/container/any.hxx
+++ b/cutl/container/any.hxx
@@ -11,14 +11,16 @@
#include <cutl/exception.hxx>
+#include <cutl/details/export.hxx>
+
namespace cutl
{
namespace container
{
- class any
+ class LIBCUTL_EXPORT any
{
public:
- struct typing: exception {};
+ struct LIBCUTL_EXPORT typing: exception {};
public:
template <typename X>
@@ -76,7 +78,7 @@ namespace cutl
}
private:
- class holder
+ class LIBCUTL_EXPORT holder
{
public:
virtual
diff --git a/cutl/container/graph.hxx b/cutl/container/graph.hxx
index 9244351..e797c22 100644
--- a/cutl/container/graph.hxx
+++ b/cutl/container/graph.hxx
@@ -11,12 +11,14 @@
#include <cutl/exception.hxx>
#include <cutl/shared-ptr.hxx>
+#include <cutl/details/export.hxx>
+
namespace cutl
{
namespace container
{
- struct no_edge: exception {};
- struct no_node: exception {};
+ struct LIBCUTL_EXPORT no_edge: exception {};
+ struct LIBCUTL_EXPORT no_node: exception {};
template <typename N, typename E>
class graph