Skip to content
Projects
Groups
Snippets
Help
Loading...
Help
Support
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in / Register
Toggle navigation
M
mariadb
Project overview
Project overview
Details
Activity
Releases
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Issues
0
Issues
0
List
Boards
Labels
Milestones
Merge Requests
0
Merge Requests
0
Analytics
Analytics
Repository
Value Stream
Wiki
Wiki
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Create a new issue
Commits
Issue Boards
Open sidebar
Kirill Smelkov
mariadb
Commits
83323285
Commit
83323285
authored
Oct 12, 2007
by
unknown
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Added SKIP_INTERNAL wrappers to mark new methods as not part of the public API.
parent
dbd81de4
Changes
3
Hide whitespace changes
Inline
Side-by-side
Showing
3 changed files
with
6 additions
and
4 deletions
+6
-4
storage/ndb/include/ndbapi/NdbOperation.hpp
storage/ndb/include/ndbapi/NdbOperation.hpp
+1
-2
storage/ndb/include/ndbapi/NdbScanFilter.hpp
storage/ndb/include/ndbapi/NdbScanFilter.hpp
+2
-1
storage/ndb/include/ndbapi/NdbTransaction.hpp
storage/ndb/include/ndbapi/NdbTransaction.hpp
+3
-1
No files found.
storage/ndb/include/ndbapi/NdbOperation.hpp
View file @
83323285
...
@@ -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
...
...
storage/ndb/include/ndbapi/NdbScanFilter.hpp
View file @
83323285
...
@@ -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
;
...
...
storage/ndb/include/ndbapi/NdbTransaction.hpp
View file @
83323285
...
@@ -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
/**
/**
...
...
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment