diff options
-rw-r--r-- | include/oox/drawingml/chart/modelbase.hxx | 12 | ||||
-rw-r--r-- | oox/inc/drawingml/chart/axismodel.hxx | 6 |
2 files changed, 0 insertions, 18 deletions
diff --git a/include/oox/drawingml/chart/modelbase.hxx b/include/oox/drawingml/chart/modelbase.hxx index d46ebbda7c50..68bb9b7e5b24 100644 --- a/include/oox/drawingml/chart/modelbase.hxx +++ b/include/oox/drawingml/chart/modelbase.hxx @@ -30,8 +30,6 @@ namespace oox { namespace drawingml { namespace chart { - - template< typename ModelType > class ModelRef : public ::boost::shared_ptr< ModelType > { @@ -51,8 +49,6 @@ public: ModelType& getOrCreate( const Param1Type& rParam1 ) { if( !*this ) this->reset( new ModelType( rParam1 ) ); return **this; } }; - - template< typename ModelType > class ModelVector : public RefVector< ModelType > { @@ -71,8 +67,6 @@ private: ModelType& append( ModelType* pModel ) { this->push_back( value_type( pModel ) ); return *pModel; } }; - - template< typename KeyType, typename ModelType > class ModelMap : public RefMap< KeyType, ModelType > { @@ -92,8 +86,6 @@ private: ModelType& insert( KeyType eKey, ModelType* pModel ) { (*this)[ eKey ].reset( pModel ); return *pModel; } }; - - struct NumberFormat { OUString maFormatCode; /// Number format code. @@ -104,8 +96,6 @@ struct NumberFormat void setAttributes( const AttributeList& rAttribs ); }; - - struct LayoutModel { double mfX; /// Left position of this object. @@ -123,8 +113,6 @@ struct LayoutModel ~LayoutModel(); }; - - } // namespace chart } // namespace drawingml } // namespace oox diff --git a/oox/inc/drawingml/chart/axismodel.hxx b/oox/inc/drawingml/chart/axismodel.hxx index a206185c223b..c4ba8d4f295c 100644 --- a/oox/inc/drawingml/chart/axismodel.hxx +++ b/oox/inc/drawingml/chart/axismodel.hxx @@ -27,8 +27,6 @@ namespace oox { namespace drawingml { namespace chart { - - struct AxisDispUnitsModel { typedef ModelRef< Shape > ShapeRef; @@ -47,8 +45,6 @@ struct AxisDispUnitsModel ~AxisDispUnitsModel(); }; - - struct AxisModel { typedef ModelRef< Shape > ShapeRef; @@ -94,8 +90,6 @@ struct AxisModel ~AxisModel(); }; - - } // namespace chart } // namespace drawingml } // namespace oox |