Textractor_test/extensions/extension.h
Akash Mozumdar 22e0d38a1e small fixes
2020-02-28 02:34:07 -07:00

24 lines
493 B
C++

#pragma once
#include "common.h"
struct InfoForExtension
{
const char* name;
int64_t value;
};
struct SentenceInfo
{
const InfoForExtension* infoArray;
int64_t operator[](std::string_view propertyName)
{
for (auto info = infoArray; info->name; ++info) // nullptr name marks end of info array
if (propertyName == info->name) return info->value;
return *(int*)0xDEAD = 0; // gives better error message than alternatives
}
};
struct SKIP {};
inline void Skip() { throw SKIP(); }