aboutsummaryrefslogtreecommitdiffstats
path: root/document/src/vespa/document/base/forcelink.h
blob: 2568608c7849e884fa651c4ccde11072d6d4c9f3 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
// Copyright Vespa.ai. Licensed under the terms of the Apache 2.0 license. See LICENSE in the project root.
/**
 * \class document::ForceLink
 * \ingroup base
 *
 * \brief Class used to include some document functionality that programs that
 *        needs to get it linked, but doesn't use it can include.
 *
 * Many codebits include this, but who really depends on it?
 */
#pragma once

namespace document {

class ForceLink {
public:
    ForceLink();
};

} // document