diff options
author | Thomas Arnhold <thomas@arnhold.org> | 2011-02-26 14:30:59 +0100 |
---|---|---|
committer | Thomas Arnhold <thomas@arnhold.org> | 2011-02-26 16:31:31 +0100 |
commit | 93652f968cfc8f72c7b2ef5a46fc2758bc9e93c9 (patch) | |
tree | 94faad4e5e4bd0643cad15116e9959db911bba39 /oox/source/drawingml | |
parent | ace98753bdf2068f9f9583b1f11381fcfe1caaf7 (diff) |
Bring back tablestyle.cxx
Diffstat (limited to 'oox/source/drawingml')
-rw-r--r-- | oox/source/drawingml/table/makefile.mk | 1 | ||||
-rw-r--r-- | oox/source/drawingml/table/tablestyle.cxx | 43 |
2 files changed, 44 insertions, 0 deletions
diff --git a/oox/source/drawingml/table/makefile.mk b/oox/source/drawingml/table/makefile.mk index ab42c6821f35..fa71971fc278 100644 --- a/oox/source/drawingml/table/makefile.mk +++ b/oox/source/drawingml/table/makefile.mk @@ -50,6 +50,7 @@ SLOFILES = \ $(SLO)$/tablestylelist.obj \ $(SLO)$/tablestylelistfragmenthandler.obj \ $(SLO)$/tablestylecontext.obj \ + $(SLO)$/tablestyle.obj \ $(SLO)$/tablebackgroundstylecontext.obj \ $(SLO)$/tablepartstylecontext.obj \ $(SLO)$/tablestyletextstylecontext.obj \ diff --git a/oox/source/drawingml/table/tablestyle.cxx b/oox/source/drawingml/table/tablestyle.cxx new file mode 100644 index 000000000000..233d32f260f3 --- /dev/null +++ b/oox/source/drawingml/table/tablestyle.cxx @@ -0,0 +1,43 @@ +/* -*- 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. + * + ************************************************************************/ + +#include "oox/drawingml/table/tablestyle.hxx" + +namespace oox { namespace drawingml { namespace table { + +TableStyle::TableStyle() +{ +} + +TableStyle::~TableStyle() +{ +} + +} } } + +/* vim:set shiftwidth=4 softtabstop=4 expandtab: */ |