diff options
| author | Ted Ross <tross@apache.org> | 2010-05-11 16:23:36 +0000 |
|---|---|---|
| committer | Ted Ross <tross@apache.org> | 2010-05-11 16:23:36 +0000 |
| commit | 228be4e020ebc5cdc9a7d04b9980d666ac99d9b4 (patch) | |
| tree | cb429621cdc842fa2964d39c8ff683a336297064 | |
| parent | 397d2c2c7ce1e25980a60ab891e733728b60e32c (diff) | |
| download | qpid-python-228be4e020ebc5cdc9a7d04b9980d666ac99d9b4.tar.gz | |
Added missing EXTERNs for Windows
git-svn-id: https://svn.apache.org/repos/asf/qpid/trunk@943164 13f79535-47bb-0310-9956-ffa450edef68
| -rw-r--r-- | qpid/cpp/include/qpid/Url.h | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/qpid/cpp/include/qpid/Url.h b/qpid/cpp/include/qpid/Url.h index 44b13b0c2a..5f6ff990ac 100644 --- a/qpid/cpp/include/qpid/Url.h +++ b/qpid/cpp/include/qpid/Url.h @@ -70,12 +70,12 @@ struct Url : public std::vector<Address> { QPID_COMMON_EXTERN void parse(const std::string& url) { parse(url.c_str()); } /** Replace contesnts with parsed URL. Replace with empty URL if invalid. */ - void parseNoThrow(const char* url); + QPID_COMMON_EXTERN void parseNoThrow(const char* url); /** Add a protocol tag to be recognzed in URLs. * Only for use by protcol plug-in initializers. */ - static void addProtocol(const std::string& tag); + QPID_COMMON_EXTERN static void addProtocol(const std::string& tag); private: mutable std::string cache; // cache string form for efficiency. |
