aboutsummaryrefslogtreecommitdiffstats
path: root/src/plugins/cppeditor/cppworkingcopy.cpp
blob: b8922b7076d4e8e6d02b15c723b7e1479708588c (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
// Copyright (C) 2016 The Qt Company Ltd.
// SPDX-License-Identifier: LicenseRef-Qt-Commercial OR GPL-3.0-only WITH Qt-GPL-exception-1.0

#include "cppworkingcopy.h"

/*!
    \class CppEditor::WorkingCopy
    \brief The working copy holds among others the unsaved content of editors.

    The working copy holds
     - unsaved content of editors
     - uic-ed UI files (through \c AbstractEditorSupport)
     - the preprocessor configuration

    Contents are keyed on filename, and hold the revision in the editor and the editor's
    contents encoded as UTF-8.
*/

namespace CppEditor {

WorkingCopy::WorkingCopy() = default;

} // namespace CppEditor