summaryrefslogtreecommitdiff
path: root/src/preproc/preprocessing_pass_registry.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'src/preproc/preprocessing_pass_registry.cpp')
-rw-r--r--src/preproc/preprocessing_pass_registry.cpp31
1 files changed, 31 insertions, 0 deletions
diff --git a/src/preproc/preprocessing_pass_registry.cpp b/src/preproc/preprocessing_pass_registry.cpp
new file mode 100644
index 000000000..3890a3230
--- /dev/null
+++ b/src/preproc/preprocessing_pass_registry.cpp
@@ -0,0 +1,31 @@
+#include "preproc/preprocessing_pass_registry.h"
+
+#include "base/output.h"
+
+namespace CVC4 {
+namespace preproc {
+
+std::unique_ptr<PreprocessingPassRegistry>
+ PreprocessingPassRegistry::s_instance = nullptr;
+
+PreprocessingPassRegistry* PreprocessingPassRegistry::getInstance() {
+ if (!s_instance) {
+ s_instance.reset(new PreprocessingPassRegistry());
+ }
+ return s_instance.get();
+}
+
+void PreprocessingPassRegistry::registerPass(
+ PreprocessingPass* preprocessingPass) {
+ Debug("pp-registry") << "Registering pass" << std::endl;
+
+ // TODO: Add pass to d_stringToPreprocessingPass map
+}
+
+PreprocessingPass* PreprocessingPassRegistry::getPass(
+ const std::string& ppName) {
+ return d_stringToPreprocessingPass[ppName];
+}
+
+} // namespace preproc
+} // namespace CVC4
generated by cgit on debian on lair
contact matthew@masot.net with questions or feedback