File indexing completed on 2025-06-29 04:09:10
0001 /*************************************************************************** 0002 * * 0003 * copyright : (C) 2007 The University of Toronto * 0004 * netterfield@astro.utoronto.ca * 0005 * * 0006 * This program is free software; you can redistribute it and/or modify * 0007 * it under the terms of the GNU General Public License as published by * 0008 * the Free Software Foundation; either version 2 of the License, or * 0009 * (at your option) any later version. * 0010 * * 0011 ***************************************************************************/ 0012 0013 #ifndef VECTORFACTORY_H 0014 #define VECTORFACTORY_H 0015 0016 #include "primitivefactory.h" 0017 0018 namespace Kst { 0019 0020 class VectorFactory : public PrimitiveFactory { 0021 public: 0022 VectorFactory(); 0023 ~VectorFactory(); 0024 PrimitivePtr generatePrimitive(ObjectStore *store, QXmlStreamReader& stream); 0025 }; 0026 0027 class GeneratedVectorFactory : public PrimitiveFactory { 0028 public: 0029 GeneratedVectorFactory(); 0030 ~GeneratedVectorFactory(); 0031 PrimitivePtr generatePrimitive(ObjectStore *store, QXmlStreamReader& stream); 0032 }; 0033 0034 class EditableVectorFactory : public PrimitiveFactory { 0035 public: 0036 EditableVectorFactory(); 0037 ~EditableVectorFactory(); 0038 PrimitivePtr generatePrimitive(ObjectStore *store, QXmlStreamReader& stream); 0039 }; 0040 0041 class DataVectorFactory : public PrimitiveFactory { 0042 public: 0043 DataVectorFactory(); 0044 ~DataVectorFactory(); 0045 PrimitivePtr generatePrimitive(ObjectStore *store, QXmlStreamReader& stream); 0046 }; 0047 0048 } 0049 0050 #endif 0051 0052 // vim: ts=2 sw=2 et