1*bbfc4cc7SAndrew Rist /************************************************************** 2cdf0e10cSrcweir * 3*bbfc4cc7SAndrew Rist * Licensed to the Apache Software Foundation (ASF) under one 4*bbfc4cc7SAndrew Rist * or more contributor license agreements. See the NOTICE file 5*bbfc4cc7SAndrew Rist * distributed with this work for additional information 6*bbfc4cc7SAndrew Rist * regarding copyright ownership. The ASF licenses this file 7*bbfc4cc7SAndrew Rist * to you under the Apache License, Version 2.0 (the 8*bbfc4cc7SAndrew Rist * "License"); you may not use this file except in compliance 9*bbfc4cc7SAndrew Rist * with the License. You may obtain a copy of the License at 10*bbfc4cc7SAndrew Rist * 11*bbfc4cc7SAndrew Rist * http://www.apache.org/licenses/LICENSE-2.0 12*bbfc4cc7SAndrew Rist * 13*bbfc4cc7SAndrew Rist * Unless required by applicable law or agreed to in writing, 14*bbfc4cc7SAndrew Rist * software distributed under the License is distributed on an 15*bbfc4cc7SAndrew Rist * "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY 16*bbfc4cc7SAndrew Rist * KIND, either express or implied. See the License for the 17*bbfc4cc7SAndrew Rist * specific language governing permissions and limitations 18*bbfc4cc7SAndrew Rist * under the License. 19*bbfc4cc7SAndrew Rist * 20*bbfc4cc7SAndrew Rist *************************************************************/ 21*bbfc4cc7SAndrew Rist 22*bbfc4cc7SAndrew Rist 23cdf0e10cSrcweir 24cdf0e10cSrcweir #ifndef _SOT_ABSDEV_HXX 25cdf0e10cSrcweir #define _SOT_ABSDEV_HXX 26cdf0e10cSrcweir 27cdf0e10cSrcweir #ifndef _TOOLS_SOLAR_H 28cdf0e10cSrcweir #include <tools/solar.h> 29cdf0e10cSrcweir #endif 30cdf0e10cSrcweir 31cdf0e10cSrcweir class JobSetup; 32cdf0e10cSrcweir class AbstractDeviceData 33cdf0e10cSrcweir { 34cdf0e10cSrcweir protected: 35cdf0e10cSrcweir JobSetup * pJobSetup; 36cdf0e10cSrcweir public: ~AbstractDeviceData()37cdf0e10cSrcweir virtual ~AbstractDeviceData() {} 38cdf0e10cSrcweir virtual AbstractDeviceData * Copy() const = 0; 39cdf0e10cSrcweir virtual sal_Bool Equals( const AbstractDeviceData & ) const = 0; 40cdf0e10cSrcweir GetJobSetup() const41cdf0e10cSrcweir JobSetup * GetJobSetup() const { return pJobSetup; } 42cdf0e10cSrcweir }; 43cdf0e10cSrcweir 44cdf0e10cSrcweir #endif // _SOT_ABSDEV_HXX 45