diff options
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 |