office-gobmx/autodoc/source/ary_i/kernel/ci_text2.cxx
Michael Meeks 535e83550e re-base on ALv2 code. Includes:
Avoid some uses of non portable #!/bin/bash in shell scripts.
    Patch contributed by Pedro Giffuni
    http://svn.apache.org/viewvc?view=revision&revision=1235297
    remove redundant namespace, patch contributed Mathias Bauer
    http://svn.apache.org/viewvc?view=revision&revision=1162610
    removal of OS/2 port changes, and preferring our similiar
    tools/inc/tools/solar.h DLLPOSTFIX cleanup.
    i118595 - Removal of the use of getopt() from rscdep.
    Patch contributed by Andre Fische
    http://svn.apache.org/viewvc?view=revision&revision=1202270
2012-07-11 18:12:35 +01:00

120 lines
2.8 KiB
C++

/* -*- 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 .
*/
#include <precomp.h>
#include <ary_i/ci_text2.hxx>
// NOT FULLY DEFINED SERVICES
#include <ary_i/disdocum.hxx>
#include <ary_i/d_token.hxx>
namespace ary
{
namespace inf
{
DocuTex2::DocuTex2()
{
}
DocuTex2::~DocuTex2()
{
for ( TokenList::iterator iter = aTokens.begin();
iter != aTokens.end();
++iter )
{
delete (*iter);
}
}
void
DocuTex2::DisplayAt( DocumentationDisplay & o_rDisplay ) const
{
for ( ary::inf::DocuTex2::TokenList::const_iterator
iter = aTokens.begin();
iter != aTokens.end();
++iter )
{
(*iter)->DisplayAt(o_rDisplay);
}
}
void
DocuTex2::AddToken( DYN DocuToken & let_drToken )
{
if (aTokens.empty())
{
if (let_drToken.IsWhiteOnly())
return;
}
aTokens.push_back(&let_drToken);
}
using csi::dsapi::DT_TextToken;
const String &
DocuTex2::TextOfFirstToken() const
{
if (NOT aTokens.empty())
{
const DT_TextToken *
pTok = dynamic_cast< const DT_TextToken* >(*aTokens.begin());
if (pTok != 0)
return pTok->GetTextStr();
}
return String::Null_();
}
String &
DocuTex2::Access_TextOfFirstToken()
{
if (NOT aTokens.empty())
{
DT_TextToken *
pTok = dynamic_cast< DT_TextToken* >(*aTokens.begin());
if (pTok != 0)
return pTok->Access_Text();
}
static String sDummy_;
return sDummy_;
}
void DocuText_Display::Display_StdAtTag(
const csi::dsapi::DT_StdAtTag & ) {}
void DocuText_Display::Display_SeeAlsoAtTag(
const csi::dsapi::DT_SeeAlsoAtTag & ) {}
void DocuText_Display::Display_ParameterAtTag(
const csi::dsapi::DT_ParameterAtTag & ) {}
void DocuText_Display::Display_SinceAtTag(
const csi::dsapi::DT_SinceAtTag & ) {}
} // namespace inf
} // namespace ary
/* vim:set shiftwidth=4 softtabstop=4 expandtab: */