#ifndef COMPONENTS_SHARED_HIGHLIGHTING_CORE_COMMON_FRAGMENT_DIRECTIVES_CONSTANTS_H_
#define COMPONENTS_SHARED_HIGHLIGHTING_CORE_COMMON_FRAGMENT_DIRECTIVES_CONSTANTS_H_
#include <string.h>
namespace shared_highlighting {
extern const char kAnchorDelimiter;
extern const char kFragmentsUrlDelimiter[];
extern const int kFragmentsUrlDelimiterLength;
extern const char kTextDirectiveParameterName[];
extern const size_t kTextDirectiveParameterNameLength;
extern const char kSelectorDirectiveParameterName[];
extern const int kSelectorDirectiveParameterNameLength;
extern const char kSelectorDirectiveSuffix[];
extern const int kSelectorDirectiveSuffixLength;
extern const char kSelectorDirectiveValuePrefix[];
extern const int kSelectorDirectiveValuePrefixLength;
extern const char kSelectorDirectiveTypePrefix[];
extern const int kSelectorDirectiveTypePrefixLength;
extern const char kSelectorJoinDelimeter[];
extern const int kSelectorJoinDelimeterLength;
extern const char kTypeCssSelector[];
extern const char kFragmentPrefixKey[];
extern const char kFragmentTextStartKey[];
extern const char kFragmentTextEndKey[];
extern const char kFragmentSuffixKey[];
extern const int kFragmentTextBackgroundColorARGB;
extern const int kFragmentTextForegroundColorARGB;
}
#endif