Browse CVS Repository
Diff of /xoonips/AL/index.h
Parent Directory
| Revision Log
| Revision Graph
| Patch
| 12 |
#include "item.h" |
#include "item.h" |
| 13 |
|
|
| 14 |
typedef unsigned int openlevel_t; |
typedef unsigned int openlevel_t; |
| 15 |
|
typedef unsigned int certify_t; |
| 16 |
|
typedef unsigned int indexop_t; |
| 17 |
|
|
| 18 |
class index : public item{ |
class index : public item{ |
| 19 |
private: |
private: |
| 27 |
const static openlevel_t OL_GROUP_ONLY = 2; |
const static openlevel_t OL_GROUP_ONLY = 2; |
| 28 |
const static openlevel_t OL_PRIVATE = 3; |
const static openlevel_t OL_PRIVATE = 3; |
| 29 |
|
|
| 30 |
|
const static certify_t NOT_CERTIFIED = 0; |
| 31 |
|
const static certify_t CERTIFY_REQUIRED = 1; |
| 32 |
|
const static certify_t CERTIFIED = 2; |
| 33 |
|
|
| 34 |
|
//IDs of index operation |
| 35 |
|
const static indexop_t OP_REGISTER = 1; |
| 36 |
|
const static indexop_t OP_UNREGISTER = 2; |
| 37 |
|
|
| 38 |
index(); |
index(); |
| 39 |
~index(); |
~index(); |
| 40 |
|
|
| 59 |
}; |
}; |
| 60 |
|
|
| 61 |
typedef class index index_t; // "index"はどこか他の場所で使用されているらしい。 |
typedef class index index_t; // "index"はどこか他の場所で使用されているらしい。 |
|
typedef enum { |
|
|
NOT_CERTIFIED, |
|
|
CERTIFY_REQUIRED, |
|
|
CERTIFIED |
|
|
} certify_t; |
|
| 62 |
|
|
| 63 |
#endif |
#endif |
|
|
Legend:
| Removed from v.1.3 |
|
| changed lines |
| |
Added in v.1.4 |
|
|
|