summaryrefslogtreecommitdiff
path: root/include/namespace.h
diff options
context:
space:
mode:
authorEmiel Bruijntjes <emiel.bruijntjes@copernica.com>2014-03-24 13:43:47 +0100
committerEmiel Bruijntjes <emiel.bruijntjes@copernica.com>2014-03-24 13:43:47 +0100
commit2fd4198b78358cf2ba527296fafb5b1728e28ea8 (patch)
tree798098f25293908c7fae4e35e8761918460cdb3e /include/namespace.h
parent930ab4880b65885322eb7ca4772b8cdb49a2b0ae (diff)
added tsrm parameter to all methods to make it compile on tsrm platforms
Diffstat (limited to 'include/namespace.h')
-rw-r--r--include/namespace.h14
1 files changed, 3 insertions, 11 deletions
diff --git a/include/namespace.h b/include/namespace.h
index 9d6e6f2..55fea05 100644
--- a/include/namespace.h
+++ b/include/namespace.h
@@ -199,18 +199,10 @@ protected:
/**
* Initialize the namespace after it was registered
* @param parent Parent namespace
+ * @param tsrm_ls
*/
- void initialize(const std::string &parent)
- {
- // the namespace to use
- std::string prefix = parent.size() ? parent + "\\" + _name : _name;
-
- // loop through the classes in this namespace
- for (auto &c : _classes) c->initialize(prefix);
-
- // and loop through the other namespaces
- for (auto &n : _namespaces) n->initialize(prefix);
- }
+// void initialize(const std::string &parent);
+ void initialize(const std::string &parent, void ***tsrm_ls);
};
/**