ULAPI  8.0
uldictionarydescriptor.h
1 
7 #ifndef ULDICTIONARYDESCRIPTOR_H
8 #define ULDICTIONARYDESCRIPTOR_H
9 
10 #include "ullanguage.h"
11 
25 {
26 public:
28  ULDictionaryDescriptor(const ULLanguage& first, const ULLanguage& second);
30  virtual ~ULDictionaryDescriptor();
31 
32  void clear();
34  bool operator==(const ULDictionaryDescriptor& other) const;
35  bool operator<(const ULDictionaryDescriptor& other) const;
36 
37  void setLanguages(const ULLanguage& first, const ULLanguage& second);
38  void getLanguages(ULLanguage& first, ULLanguage& second) const;
39  const ULLanguage& getFirstLanguage() const;
40  const ULLanguage& getSecondLanguage() const;
41 
42 private:
43  int type; // No idea what this is for.
44  ULLanguage firstLanguage;
45  ULLanguage secondLanguage;
46  // Product? ImporterID?
47 };
48 
49 #endif
50