2010-10-27 13:11:31 +01:00
|
|
|
/* -*- Mode: C++; tab-width: 4; indent-tabs-mode: nil; c-basic-offset: 4 -*- */
|
2012-07-11 19:49:09 +01:00
|
|
|
/*
|
|
|
|
* 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/.
|
|
|
|
*
|
|
|
|
* This file incorporates work covered by the following license notice:
|
|
|
|
*
|
|
|
|
* Licensed to the Apache Software Foundation (ASF) under one or more
|
|
|
|
* contributor license agreements. See the NOTICE file distributed
|
|
|
|
* with this work for additional information regarding copyright
|
|
|
|
* ownership. The ASF licenses this file to you under the Apache
|
|
|
|
* License, Version 2.0 (the "License"); you may not use this file
|
|
|
|
* except in compliance with the License. You may obtain a copy of
|
|
|
|
* the License at http://www.apache.org/licenses/LICENSE-2.0 .
|
|
|
|
*/
|
2000-09-18 15:33:13 +00:00
|
|
|
|
2014-04-18 22:32:17 +02:00
|
|
|
#ifndef INCLUDED_IDL_INC_MODULE_HXX
|
|
|
|
#define INCLUDED_IDL_INC_MODULE_HXX
|
2000-09-18 15:33:13 +00:00
|
|
|
|
2017-10-23 22:40:06 +02:00
|
|
|
#include "slot.hxx"
|
|
|
|
#include "object.hxx"
|
2000-09-18 15:33:13 +00:00
|
|
|
|
2016-02-12 08:58:26 +02:00
|
|
|
class SvMetaModule : public SvMetaObject
|
2000-09-18 15:33:13 +00:00
|
|
|
{
|
|
|
|
public:
|
2016-02-11 15:41:48 +02:00
|
|
|
SvRefMemberList<SvMetaClass *> aClassList;
|
2000-09-18 15:33:13 +00:00
|
|
|
|
2016-03-23 09:44:28 +02:00
|
|
|
SvMetaModule();
|
2000-09-18 15:33:13 +00:00
|
|
|
|
2015-01-21 12:15:26 +02:00
|
|
|
void WriteSfx( SvIdlDataBase & rBase, SvStream & rOutStm );
|
2000-09-18 15:33:13 +00:00
|
|
|
};
|
2012-08-07 16:56:51 +02:00
|
|
|
|
2014-04-18 22:32:17 +02:00
|
|
|
#endif // INCLUDED_IDL_INC_MODULE_HXX
|
2000-09-18 15:33:13 +00:00
|
|
|
|
2010-10-27 13:11:31 +01:00
|
|
|
/* vim:set shiftwidth=4 softtabstop=4 expandtab: */
|