diff options
Diffstat (limited to 'xml2cmp/source/inc/lst_str.h')
-rw-r--r-- | xml2cmp/source/inc/lst_str.h | 92 |
1 files changed, 0 insertions, 92 deletions
diff --git a/xml2cmp/source/inc/lst_str.h b/xml2cmp/source/inc/lst_str.h deleted file mode 100644 index 0f289033c978..000000000000 --- a/xml2cmp/source/inc/lst_str.h +++ /dev/null @@ -1,92 +0,0 @@ -/* -*- Mode: C++; tab-width: 4; indent-tabs-mode: nil; c-basic-offset: 4 -*- */ -/* - * 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 . - */ - -#ifndef CPV_LST_STR_H -#define CPV_LST_STR_H - -#include "str.h" - - -typedef struct LSElem -{ - Cstring * pData; - struct LSElem * pNext; -} LSElem; - - -typedef struct LSIterator -{ - LSElem * pElement; -} LSIterator; - - -typedef struct ListCstring -{ - LSElem * dpStart; - LSElem * pEnd; - Bool bAutoDeleteData; -} ListCstring; - - -#define ListCstring_THIS ListCstring * pThis -#define LSIterator_THIS LSIterator * pThis -#define LSElem_THIS LSElem * pThis - - - -void ListCstring_CTOR( ListCstring_THIS, - Bool i_bAutoDeleteData ); -void ListCstring_DTOR( ListCstring_THIS ); - -void LS_Add( ListCstring_THIS, - Cstring * i_pData ); -void LS_Empty( ListCstring_THIS, - Bool i_bDeleteData ); -void LS_Append( ListCstring_THIS, - char * i_sStrings[], - intt i_nNrOfStrings ); -Bool LS_IsEmpty( ListCstring_THIS ); - -LSIterator LS_Begin( ListCstring_THIS ); - - -void LSIterator_CTOR( LSIterator_THIS, - LSElem * i_pElement ); -void LSI_opp( LSIterator_THIS ); /** operator++() */ - -Bool LSI_obool( LSIterator_THIS ); -Cstring * LSI_optr( LSIterator_THIS ); /** operator->() */ - - -void LSElem_CTOR( LSElem_THIS, - Cstring * i_pData ); -void LSElem_DTOR( LSElem_THIS ); - -Cstring * LSE_Data( LSElem_THIS ); -LSElem * LSE_Next( LSElem_THIS ); - -void LSE_SetNext( LSElem_THIS, - LSElem * i_pNext ); -void LSE_DeleteData( LSElem_THIS ); - - - -#endif - -/* vim:set shiftwidth=4 softtabstop=4 expandtab: */ |