Blame src/nautilus-search-engine-model.h

Packit a189e0
/*
Packit a189e0
 * Copyright (C) 2005 Red Hat, Inc
Packit a189e0
 *
Packit a189e0
 * Nautilus is free software; you can redistribute it and/or
Packit a189e0
 * modify it under the terms of the GNU General Public License as
Packit a189e0
 * published by the Free Software Foundation; either version 2 of the
Packit a189e0
 * License, or (at your option) any later version.
Packit a189e0
 *
Packit a189e0
 * Nautilus is distributed in the hope that it will be useful,
Packit a189e0
 * but WITHOUT ANY WARRANTY; without even the implied warranty of
Packit a189e0
 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU
Packit a189e0
 * General Public License for more details.
Packit a189e0
 *
Packit a189e0
 * You should have received a copy of the GNU General Public
Packit a189e0
 * License along with this program; see the file COPYING.  If not,
Packit a189e0
 * see <http://www.gnu.org/licenses/>.
Packit a189e0
 *
Packit a189e0
 * Author: Alexander Larsson <alexl@redhat.com>
Packit a189e0
 *
Packit a189e0
 */
Packit a189e0
Packit a189e0
#ifndef NAUTILUS_SEARCH_ENGINE_MODEL_H
Packit a189e0
#define NAUTILUS_SEARCH_ENGINE_MODEL_H
Packit a189e0
Packit a189e0
#include "nautilus-directory.h"
Packit a189e0
Packit a189e0
#define NAUTILUS_TYPE_SEARCH_ENGINE_MODEL (nautilus_search_engine_model_get_type ())
Packit a189e0
G_DECLARE_FINAL_TYPE (NautilusSearchEngineModel, nautilus_search_engine_model, NAUTILUS, SEARCH_ENGINE_MODEL, GObject)
Packit a189e0
Packit a189e0
NautilusSearchEngineModel* nautilus_search_engine_model_new       (void);
Packit a189e0
void                       nautilus_search_engine_model_set_model (NautilusSearchEngineModel *model,
Packit a189e0
								   NautilusDirectory         *directory);
Packit a189e0
NautilusDirectory *        nautilus_search_engine_model_get_model (NautilusSearchEngineModel *model);
Packit a189e0
Packit a189e0
#endif /* NAUTILUS_SEARCH_ENGINE_MODEL_H */