Commit 83323285 authored by unknown's avatar unknown

Added SKIP_INTERNAL wrappers to mark new methods as not part of the public API.

parent dbd81de4
...@@ -843,10 +843,9 @@ protected: ...@@ -843,10 +843,9 @@ protected:
void next(NdbOperation*); // Set next pointer void next(NdbOperation*); // Set next pointer
NdbOperation* next(); // Get next pointer NdbOperation* next(); // Get next pointer
NdbTransation* getNdbTransaction();
public: public:
#ifndef DOXYGEN_SHOULD_SKIP_INTERNAL #ifndef DOXYGEN_SHOULD_SKIP_INTERNAL
NdbTransation* getNdbTransaction();
const NdbOperation* next() const; const NdbOperation* next() const;
const NdbRecAttr* getFirstRecAttr() const; const NdbRecAttr* getFirstRecAttr() const;
#endif #endif
......
...@@ -190,8 +190,9 @@ public: ...@@ -190,8 +190,9 @@ public:
* immediately. * immediately.
*/ */
const class NdbError & getNdbError() const; const class NdbError & getNdbError() const;
#ifndef DOXYGEN_SHOULD_SKIP_INTERNAL
NdbOperation * getNdbOperation(); NdbOperation * getNdbOperation();
#endif
private: private:
#ifndef DOXYGEN_SHOULD_SKIP_INTERNAL #ifndef DOXYGEN_SHOULD_SKIP_INTERNAL
friend class NdbScanFilterImpl; friend class NdbScanFilterImpl;
......
...@@ -170,12 +170,14 @@ public: ...@@ -170,12 +170,14 @@ public:
#endif #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() { Ndb * getNdb() {
return theNdb; return theNdb;
} }
#endif
#ifndef DOXYGEN_SHOULD_SKIP_DEPRECATED #ifndef DOXYGEN_SHOULD_SKIP_DEPRECATED
/** /**
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment