slang_utils.h revision 8c6d9b2d36ed2d6d811279fd9bddc05fffe16803
1#ifndef _SLANG_COMPILER_UTILS_H
2#define _SLANG_COMPILER_UTILS_H
3
4#include <string>
5
6namespace llvm {
7  class StringRef;
8}
9
10namespace slang {
11
12class SlangUtils {
13 private:
14  SlangUtils() {}
15
16 public:
17  static bool CreateDirectoryWithParents(llvm::StringRef Dir,
18                                         std::string* Error);
19};
20}
21
22#endif  // _SLANG_COMPILER_UTILS_H
23