1*d291ea28SAndrew Rist /************************************************************** 2cdf0e10cSrcweir * 3*d291ea28SAndrew Rist * Licensed to the Apache Software Foundation (ASF) under one 4*d291ea28SAndrew Rist * or more contributor license agreements. See the NOTICE file 5*d291ea28SAndrew Rist * distributed with this work for additional information 6*d291ea28SAndrew Rist * regarding copyright ownership. The ASF licenses this file 7*d291ea28SAndrew Rist * to you under the Apache License, Version 2.0 (the 8*d291ea28SAndrew Rist * "License"); you may not use this file except in compliance 9*d291ea28SAndrew Rist * with the License. You may obtain a copy of the License at 10*d291ea28SAndrew Rist * 11*d291ea28SAndrew Rist * http://www.apache.org/licenses/LICENSE-2.0 12*d291ea28SAndrew Rist * 13*d291ea28SAndrew Rist * Unless required by applicable law or agreed to in writing, 14*d291ea28SAndrew Rist * software distributed under the License is distributed on an 15*d291ea28SAndrew Rist * "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY 16*d291ea28SAndrew Rist * KIND, either express or implied. See the License for the 17*d291ea28SAndrew Rist * specific language governing permissions and limitations 18*d291ea28SAndrew Rist * under the License. 19*d291ea28SAndrew Rist * 20*d291ea28SAndrew Rist *************************************************************/ 21cdf0e10cSrcweir 22cdf0e10cSrcweir #include <precomp.h> 23cdf0e10cSrcweir #include <ary/info/all_dts.hxx> 24cdf0e10cSrcweir 25cdf0e10cSrcweir 26cdf0e10cSrcweir // NOT FULLY DEFINED SERVICES 27cdf0e10cSrcweir #include <ary/info/infodisp.hxx> 28cdf0e10cSrcweir 29cdf0e10cSrcweir 30cdf0e10cSrcweir namespace ary 31cdf0e10cSrcweir { 32cdf0e10cSrcweir namespace info 33cdf0e10cSrcweir { 34cdf0e10cSrcweir 35cdf0e10cSrcweir 36cdf0e10cSrcweir void do_StoreAt(DocuDisplay & o_rDisplay) const37cdf0e10cSrcweirDT_Text::do_StoreAt( DocuDisplay & o_rDisplay ) const 38cdf0e10cSrcweir { 39cdf0e10cSrcweir o_rDisplay.Display_DT_Text(*this); 40cdf0e10cSrcweir } 41cdf0e10cSrcweir 42cdf0e10cSrcweir bool inq_IsWhite() const43cdf0e10cSrcweirDT_Text::inq_IsWhite() const 44cdf0e10cSrcweir { 45cdf0e10cSrcweir return false; 46cdf0e10cSrcweir } 47cdf0e10cSrcweir 48cdf0e10cSrcweir void do_StoreAt(DocuDisplay & o_rDisplay) const49cdf0e10cSrcweirDT_MaybeLink::do_StoreAt( DocuDisplay & o_rDisplay ) const 50cdf0e10cSrcweir { 51cdf0e10cSrcweir o_rDisplay.Display_DT_MaybeLink(*this); 52cdf0e10cSrcweir } 53cdf0e10cSrcweir 54cdf0e10cSrcweir bool inq_IsWhite() const55cdf0e10cSrcweirDT_MaybeLink::inq_IsWhite() const 56cdf0e10cSrcweir { 57cdf0e10cSrcweir return false; 58cdf0e10cSrcweir } 59cdf0e10cSrcweir 60cdf0e10cSrcweir void do_StoreAt(DocuDisplay & o_rDisplay) const61cdf0e10cSrcweirDT_Whitespace::do_StoreAt( DocuDisplay & o_rDisplay ) const 62cdf0e10cSrcweir { 63cdf0e10cSrcweir o_rDisplay.Display_DT_Whitespace(*this); 64cdf0e10cSrcweir } 65cdf0e10cSrcweir 66cdf0e10cSrcweir bool inq_IsWhite() const67cdf0e10cSrcweirDT_Whitespace::inq_IsWhite() const 68cdf0e10cSrcweir { 69cdf0e10cSrcweir return true; 70cdf0e10cSrcweir } 71cdf0e10cSrcweir 72cdf0e10cSrcweir void do_StoreAt(DocuDisplay & o_rDisplay) const73cdf0e10cSrcweirDT_Eol::do_StoreAt( DocuDisplay & o_rDisplay ) const 74cdf0e10cSrcweir { 75cdf0e10cSrcweir o_rDisplay.Display_DT_Eol(*this); 76cdf0e10cSrcweir } 77cdf0e10cSrcweir 78cdf0e10cSrcweir bool inq_IsWhite() const79cdf0e10cSrcweirDT_Eol::inq_IsWhite() const 80cdf0e10cSrcweir { 81cdf0e10cSrcweir return true; 82cdf0e10cSrcweir } 83cdf0e10cSrcweir 84cdf0e10cSrcweir void do_StoreAt(DocuDisplay & o_rDisplay) const85cdf0e10cSrcweirDT_Xml::do_StoreAt( DocuDisplay & o_rDisplay ) const 86cdf0e10cSrcweir { 87cdf0e10cSrcweir o_rDisplay.Display_DT_Xml(*this); 88cdf0e10cSrcweir } 89cdf0e10cSrcweir 90cdf0e10cSrcweir bool inq_IsWhite() const91cdf0e10cSrcweirDT_Xml::inq_IsWhite() const 92cdf0e10cSrcweir { 93cdf0e10cSrcweir return false; 94cdf0e10cSrcweir } 95cdf0e10cSrcweir 96cdf0e10cSrcweir 97cdf0e10cSrcweir } // namespace info 98cdf0e10cSrcweir } // namespace ary 99cdf0e10cSrcweir 100