Develop and Download Open Source Software

Browse CVS Repository

Diff of /xoonips/AL/item.h

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

revision 1.1 by aga, Sat Dec 25 10:28:25 2004 UTC revision 1.2 by aga, Fri Jan 14 10:34:45 2005 UTC
# Line 23  private: Line 23  private:
23      time_t creationDate;      time_t creationDate;
24    
25  public:  public:
26        // reserved item_id value
27        const static int IID_ROOT = 1;
28        const static int IID_BINDERS = 2;
29        const static int IID_PUBLIC = 3;
30        
31        // reserved item_type_id value
32        const static int ITID_INDEX = 1;
33        const static int ITID_BINDER = 2;
34        
35      item();      item();
36      ~item();      ~item();
37            
38      int getIID() const;      int getItemID() const;
39      int getItemTypeID() const;      int getItemTypeID() const;
40      const char *getSubtype() const;      const char *getSubtype() const;
41      int getContributorUID() const;      int getContributorUID() const;
# Line 37  public: Line 46  public:
46      time_t getCreationDate() const;      time_t getCreationDate() const;
47            
48            
49      void setIID(int);      void setItemID(int);
50      void setItemTypeID(int);      void setItemTypeID(int);
51      void setSubtype(const char *);      void setSubtype(const char *);
52      void setContributorUID(int);      void setContributorUID(int);
53      void setTitle(const char*);      void setTitle(const char*);
54      void setKeywords(const char*);      void setKeywords(const char*);
55      void setDescriptor(const char*);      void setDescription(const char*);
56      void setLastUpdateDate(time_t);      void setLastUpdateDate(time_t);
57      void setCreationDate(time_t);      void setCreationDate(time_t);
58  };  };
59    
60    typedef class item item_t;
61    
62  #endif  #endif

Legend:
Removed from v.1.1  
changed lines
  Added in v.1.2

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