summaryrefslogtreecommitdiff
path: root/idl/source/objects/module.cxx
diff options
context:
space:
mode:
Diffstat (limited to 'idl/source/objects/module.cxx')
-rw-r--r--idl/source/objects/module.cxx31
1 files changed, 0 insertions, 31 deletions
diff --git a/idl/source/objects/module.cxx b/idl/source/objects/module.cxx
index ab40dcd4e97c..c261d4c76dd3 100644
--- a/idl/source/objects/module.cxx
+++ b/idl/source/objects/module.cxx
@@ -507,35 +507,4 @@ void SvMetaModule::Write( SvIdlDataBase & rBase, SvStream & rOutStm,
}
}
-void SvMetaModule::WriteSrc( SvIdlDataBase & rBase, SvStream & rOutStm,
- Table * pTable )
-{
- if( !aSlotIdFile.getString().isEmpty() )
- rOutStm << "//#include <" << aSlotIdFile.getString().getStr() << '>' << endl;
- for( sal_uLong n = 0; n < aClassList.Count(); n++ )
- {
- aClassList.GetObject( n )->WriteSrc( rBase, rOutStm, pTable );
- }
-}
-
-void SvMetaModule::WriteHxx( SvIdlDataBase & rBase, SvStream & rOutStm,
- sal_uInt16 nTab )
-{
- for( sal_uLong n = 0; n < aClassList.Count(); n++ )
- {
- SvMetaClass * pClass = aClassList.GetObject( n );
- pClass->WriteHxx( rBase, rOutStm, nTab );
- }
-}
-
-void SvMetaModule::WriteCxx( SvIdlDataBase & rBase, SvStream & rOutStm,
- sal_uInt16 nTab )
-{
- for( sal_uLong n = 0; n < aClassList.Count(); n++ )
- {
- SvMetaClass * pClass = aClassList.GetObject( n );
- pClass->WriteCxx( rBase, rOutStm, nTab );
- }
-}
-
/* vim:set shiftwidth=4 softtabstop=4 expandtab: */