diff options
author | Michael Meeks <michael.meeks@novell.com> | 2010-10-29 15:17:55 +0100 |
---|---|---|
committer | Michael Meeks <michael.meeks@novell.com> | 2010-11-01 10:57:43 +0000 |
commit | ba1ec85d69d9b4d39c0b89b4b6711b93965d95f1 (patch) | |
tree | 81d20722efc93025763f2490b1abd905457e802a /desktop/inc/migration.hxx | |
parent | 49d5bdcf4d516b21721f1ed6d313ea4a170d39eb (diff) |
Simplify migration API, fix typos, and add trace output
Diffstat (limited to 'desktop/inc/migration.hxx')
-rw-r--r-- | desktop/inc/migration.hxx | 45 |
1 files changed, 45 insertions, 0 deletions
diff --git a/desktop/inc/migration.hxx b/desktop/inc/migration.hxx new file mode 100644 index 000000000000..3319d8d7716f --- /dev/null +++ b/desktop/inc/migration.hxx @@ -0,0 +1,45 @@ +/* -*- Mode: C++; tab-width: 4; indent-tabs-mode: nil; c-basic-offset: 4 -*- */ +/************************************************************************* + * + * DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER. + * + * Copyright 2000, 2010 Oracle and/or its affiliates. + * + * OpenOffice.org - a multi-platform office productivity suite + * + * This file is part of OpenOffice.org. + * + * OpenOffice.org is free software: you can redistribute it and/or modify + * it under the terms of the GNU Lesser General Public License version 3 + * only, as published by the Free Software Foundation. + * + * OpenOffice.org is distributed in the hope that it will be useful, + * but WITHOUT ANY WARRANTY; without even the implied warranty of + * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the + * GNU Lesser General Public License version 3 for more details + * (a copy is included in the LICENSE file that accompanied this code). + * + * You should have received a copy of the GNU Lesser General Public License + * version 3 along with OpenOffice.org. If not, see + * <http://www.openoffice.org/license.html> + * for a copy of the LGPLv3 License. + * + ************************************************************************/ + +#ifndef _DESKTOP_MIGRATION_HXX_ +#define _DESKTOP_MIGRATION_HXX_ + +#include <sal/types.h> +#include <rtl/ustring.hxx> + +namespace desktop { + +class Migration +{ +public: + static void migrateSettingsIfNecessary(); +}; +} +#endif + +/* vim:set shiftwidth=4 softtabstop=4 expandtab: */ |