Develop and Download Open Source Software

Browse CVS Repository

Diff of /xoonips/AL/index.h

Parent Directory Parent Directory | Revision Log Revision Log | View Revision Graph Revision Graph | View Patch Patch

revision 1.3 by youi, Sat Jan 15 05:47:16 2005 UTC revision 1.4 by youi, Wed Jan 19 06:07:07 2005 UTC
# Line 12  Line 12 
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:
# Line 25  public: Line 27  public:
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            
# Line 49  public: Line 59  public:
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

Back to OSDN">Back to OSDN
ViewVC Help
Powered by ViewVC 1.1.26