blob: 3e860caa7f4f80b2d7a2ab1af1ca609b7eb7ea4f (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
|
/*
* Copyright (C) 2022 The GNOME project contributors
*
* SPDX-License-Identifier: GPL-3.0-or-later
*/
#pragma once
#include "nautilus-list-base.h"
G_BEGIN_DECLS
#define NAUTILUS_TYPE_GRID_VIEW (nautilus_grid_view_get_type())
G_DECLARE_FINAL_TYPE (NautilusGridView, nautilus_grid_view, NAUTILUS, GRID_VIEW, NautilusListBase)
NautilusGridView *nautilus_grid_view_new (void);
G_END_DECLS
|