]> git.donarmstrong.com Git - bamtools.git/blobdiff - src/utils/bamtools_variant.h
Added UTILS_EXPORT macro to classes in BamTools utility library
[bamtools.git] / src / utils / bamtools_variant.h
index 93ef8ab472004cc2836d04a116dd2f8fcb5980e8..116a2c0addf6c06ff48cddfc62ef795e69e3d8ca 100644 (file)
@@ -3,7 +3,7 @@
 // Marth Lab, Department of Biology, Boston College
 // All rights reserved.
 // ---------------------------------------------------------------------------
-// Last modified: 2 June 2010
+// Last modified: 19 November 2010
 // ---------------------------------------------------------------------------
 // Provides a template-based variant type
 // ---------------------------------------------------------------------------
 #ifndef BAMTOOLS_VARIANT_H
 #define BAMTOOLS_VARIANT_H
 
+#include <utils/utils_global.h>
 #include <stdexcept>
-#include <typeinfo>
 #include <string>
+#include <typeinfo>
 
 namespace BamTools {
 
-class Variant {
+class UTILS_EXPORT Variant {
   
     public:
         Variant(void) : data(NULL) { }