EXAMPLE dox
dynamodb_reserved_words.h
1 /*
2  * dynamodb_reserved_words.h
3  *
4  * Created on: Mar 25, 2015
5  * Author: csabaraduly
6  */
7 
8 #ifndef SDK_SRC_SERVICES_DYNAMODB_INTERNAL_DYNAMODB_RESERVED_WORDS_H_
9 #define SDK_SRC_SERVICES_DYNAMODB_INTERNAL_DYNAMODB_RESERVED_WORDS_H_
10 
11 #include <string>
12 
13 namespace aws {
14 
20 public:
26  static bool is_reserved(std::string const& word);
27 
28 #if 0 // enable if needed
29  static bool is_reserved(const char *word);
30 #endif
31 };
32 
33 } /* namespace aws */
34 
35 #endif /* SDK_SRC_SERVICES_DYNAMODB_INTERNAL_DYNAMODB_RESERVED_WORDS_H_ */
Helper class to identify DynamoDB reserved words.
static bool is_reserved(std::string const &word)
Check whether a string is a reserved name.