diff options
author | Ken Martin <ken.martin@kitware.com> | 2002-08-21 15:57:12 (GMT) |
---|---|---|
committer | Ken Martin <ken.martin@kitware.com> | 2002-08-21 15:57:12 (GMT) |
commit | 34c7c1b78d347f30ecb5124db7f365ffb385b5a1 (patch) | |
tree | 0df921f74f1540b0b7471cfd34ba4426628e3e3e /Source/cmDirectory.h | |
parent | 38dfd36fdaad9c7e3767189b23d74c4953614139 (diff) | |
download | CMake-34c7c1b78d347f30ecb5124db7f365ffb385b5a1.zip CMake-34c7c1b78d347f30ecb5124db7f365ffb385b5a1.tar.gz CMake-34c7c1b78d347f30ecb5124db7f365ffb385b5a1.tar.bz2 |
made CMakeLib shared on windows
Diffstat (limited to 'Source/cmDirectory.h')
-rw-r--r-- | Source/cmDirectory.h | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/Source/cmDirectory.h b/Source/cmDirectory.h index de5420d..403edd1 100644 --- a/Source/cmDirectory.h +++ b/Source/cmDirectory.h @@ -37,17 +37,17 @@ public: * in that directory. 0 is returned if the directory can not be * opened, 1 if it is opened. */ - bool Load(const char* dir); + CM_EXPORT bool Load(const char* dir); /** * Return the number of files in the current directory. */ - size_t GetNumberOfFiles() { return m_Files.size();} + CM_EXPORT size_t GetNumberOfFiles() { return m_Files.size();} /** * Return the file at the given index, the indexing is 0 based */ - const char* GetFile(size_t ); + CM_EXPORT const char* GetFile(size_t ); private: std::vector<std::string> m_Files; // Array of Files |