summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorunknown <mtaylor@solace.(none)>2007-10-12 00:10:07 -0700
committerunknown <mtaylor@solace.(none)>2007-10-12 00:10:07 -0700
commit83323285d8d9054c722d81f18def412ca1f3d05f (patch)
tree96be1eb786ca832a8d919d3a93bca26dcfc89ddf
parentdbd81de4066c6a818478f7083878a455372ce84d (diff)
downloadmariadb-git-83323285d8d9054c722d81f18def412ca1f3d05f.tar.gz
Added SKIP_INTERNAL wrappers to mark new methods as not part of the public API.
-rw-r--r--storage/ndb/include/ndbapi/NdbOperation.hpp3
-rw-r--r--storage/ndb/include/ndbapi/NdbScanFilter.hpp3
-rw-r--r--storage/ndb/include/ndbapi/NdbTransaction.hpp4
3 files changed, 6 insertions, 4 deletions
diff --git a/storage/ndb/include/ndbapi/NdbOperation.hpp b/storage/ndb/include/ndbapi/NdbOperation.hpp
index 063b414e520..9b528ef4949 100644
--- a/storage/ndb/include/ndbapi/NdbOperation.hpp
+++ b/storage/ndb/include/ndbapi/NdbOperation.hpp
@@ -843,10 +843,9 @@ protected:
void next(NdbOperation*); // Set next pointer
NdbOperation* next(); // Get next pointer
- NdbTransation* getNdbTransaction();
-
public:
#ifndef DOXYGEN_SHOULD_SKIP_INTERNAL
+ NdbTransation* getNdbTransaction();
const NdbOperation* next() const;
const NdbRecAttr* getFirstRecAttr() const;
#endif
diff --git a/storage/ndb/include/ndbapi/NdbScanFilter.hpp b/storage/ndb/include/ndbapi/NdbScanFilter.hpp
index 35cbccedfe5..4527012a6c4 100644
--- a/storage/ndb/include/ndbapi/NdbScanFilter.hpp
+++ b/storage/ndb/include/ndbapi/NdbScanFilter.hpp
@@ -190,8 +190,9 @@ public:
* immediately.
*/
const class NdbError & getNdbError() const;
-
+#ifndef DOXYGEN_SHOULD_SKIP_INTERNAL
NdbOperation * getNdbOperation();
+#endif
private:
#ifndef DOXYGEN_SHOULD_SKIP_INTERNAL
friend class NdbScanFilterImpl;
diff --git a/storage/ndb/include/ndbapi/NdbTransaction.hpp b/storage/ndb/include/ndbapi/NdbTransaction.hpp
index 7a06b182647..6a057655398 100644
--- a/storage/ndb/include/ndbapi/NdbTransaction.hpp
+++ b/storage/ndb/include/ndbapi/NdbTransaction.hpp
@@ -170,12 +170,14 @@ public:
#endif
};
+#ifndef DOXYGEN_SHOULD_SKIP_INTERNAL
/**
- * Convenience method to fetch this transactions Ndb* object
+ * Convenience method to fetch this transaction's Ndb* object
*/
Ndb * getNdb() {
return theNdb;
}
+#endif
#ifndef DOXYGEN_SHOULD_SKIP_DEPRECATED
/**