123456789101112131415161718192021222324252627282930313233343536373839404142434445 |
- #ifndef EC_FEATURELIST_H
- #define EC_FEATURELIST_H
- #include <kopano/platform.h>
- #include <string>
- #include <set>
- namespace KC {
- static const char *const kopano_features[] = {
- "imap", "pop3", "mobile", "outlook"
- };
- inline std::set<std::string> getFeatures() {
- return std::set<std::string>(kopano_features,
- kopano_features + ARRAY_SIZE(kopano_features));
- }
- }
- #endif
|