// Copyright Vespa.ai. Licensed under the terms of the Apache 2.0 license. See LICENSE in the project root. #pragma once #include #include namespace proton { /** * Abstract implementation of the IDocumentMetaStore interface * as an attribute vector. **/ class DocumentMetaStoreAttribute : public search::NotImplementedAttribute { public: explicit DocumentMetaStoreAttribute(const vespalib::string &name); ~DocumentMetaStoreAttribute() override; static const vespalib::string &getFixedName(); size_t getFixedWidth() const override { return document::GlobalId::LENGTH; } }; }