00001
00002
00003
00004
00005
00006
00007
00008
00009 #ifndef SOURCEHIGHLIGHTUTILS_H_
00010 #define SOURCEHIGHLIGHTUTILS_H_
00011
00012 #include <set>
00013 #include <string>
00014
00015 namespace srchilite {
00016
00018 typedef std::set<std::string> StringSet;
00019
00023 class SourceHighlightUtils {
00024 public:
00032 static StringSet getFileNames(const std::string path, const std::string fileExtension);
00033
00039 static StringSet getStyleFileNames(const std::string path = "");
00040
00046 static StringSet getCssStyleFileNames(const std::string path = "");
00047 };
00048
00049 }
00050
00051 #endif