office-gobmx/include/vcl/treelistentries.hxx
Caolán McNamara 6311f7ffce move SvTreeListBox to vcl
Change-Id: I04a146d3d8a428ac1678827dc883525c40240a44
Reviewed-on: https://gerrit.libreoffice.org/62787
Tested-by: Jenkins
Reviewed-by: Caolán McNamara <caolanm@redhat.com>
Tested-by: Caolán McNamara <caolanm@redhat.com>
2018-11-07 22:01:02 +01:00

21 lines
619 B
C++

/* -*- Mode: C++; tab-width: 4; indent-tabs-mode: nil; c-basic-offset: 4 -*- */
/*
* This file is part of the LibreOffice project.
*
* This Source Code Form is subject to the terms of the Mozilla Public
* License, v. 2.0. If a copy of the MPL was not distributed with this
* file, You can obtain one at http://mozilla.org/MPL/2.0/.
*/
#ifndef INCLUDED_VCL_TREELISTENTRIES_HXX
#define INCLUDED_VCL_TREELISTENTRIES_HXX
#include <vector>
#include <memory>
class SvTreeListEntry;
typedef std::vector<std::unique_ptr<SvTreeListEntry>> SvTreeListEntries;
#endif
/* vim:set shiftwidth=4 softtabstop=4 expandtab: */