add bitmap .

This commit is contained in:
tqchen
2014-10-15 14:30:06 -07:00
parent 91e34c6fb4
commit d0daecb4d3
3 changed files with 188 additions and 0 deletions

20
src/sync/sync.h Normal file
View File

@@ -0,0 +1,20 @@
#ifndef XGBOOST_SYNC_SYNC_H_
#define XGBOOST_SYNC_SYNC_H_
/*!
* \file sync.h
* \brief interface to do synchronization
* \author Tianqi Chen
*/
namespace xgboost {
namespace sync {
/*!
* \brief synchronization context interface of xgboost,
* will be provided as a singleton
*/
class IContext {
};
} // namespace sync
} // namespace xgboost
#endif