Skip to content
Snippets Groups Projects
Commit 422c5184 authored by Marco Biasini's avatar Marco Biasini
Browse files

add proper visibility to declarations

parent 6db9fff7
No related branches found
No related tags found
No related merge requests found
...@@ -11,7 +11,7 @@ typedef boost::shared_ptr<MinimalCompoundLib> MinimalCompoundLibPtr; ...@@ -11,7 +11,7 @@ typedef boost::shared_ptr<MinimalCompoundLib> MinimalCompoundLibPtr;
// a minimal compound lib containing the definitions of the 20 standard // a minimal compound lib containing the definitions of the 20 standard
// amino acids and standard nucleotides // amino acids and standard nucleotides
class MinimalCompoundLib : public CompoundLibBase { class DLLEXPORT_OST_CONOP MinimalCompoundLib : public CompoundLibBase {
public: public:
MinimalCompoundLib() {} MinimalCompoundLib() {}
virtual CompoundPtr FindCompound(const String& id, virtual CompoundPtr FindCompound(const String& id,
......
...@@ -29,9 +29,9 @@ ...@@ -29,9 +29,9 @@
namespace ost { namespace mol { namespace alg { namespace ost { namespace mol { namespace alg {
const char* POLYPEPTIDE_CHAIN_NAMES="ABCDEFGHIJKLMNOPQRSTUVWXYZ0123456789abcdefghijklmnopqrstuvwxyz"; DLLEXPORT const char* POLYPEPTIDE_CHAIN_NAMES="ABCDEFGHIJKLMNOPQRSTUVWXYZ0123456789abcdefghijklmnopqrstuvwxyz";
const char* LIGAND_CHAIN_NAME="_"; DLLEXPORT const char* LIGAND_CHAIN_NAME="_";
const char* WATER_CHAIN_NAME="-"; DLLEXPORT const char* WATER_CHAIN_NAME="-";
namespace { namespace {
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Please register or to comment