File indexing completed on 2024-12-22 04:17:46
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 STRINGMODEL_H 0014 #define STRINGMODEL_H 0015 0016 #include "primitivemodel.h" 0017 0018 0019 namespace Kst { 0020 0021 0022 class StringModel : public PrimitiveModel 0023 { 0024 0025 enum ColumnID { Name, Value }; 0026 0027 public: 0028 explicit StringModel(ObjectStore *store) : PrimitiveModel(store) { 0029 createTree<String>(); 0030 } 0031 0032 void addDataSourcesMetas(DataSourcePtr dataSource, PrimitiveTreeItem* parent = 0); 0033 0034 }; 0035 0036 0037 } 0038 0039 #endif 0040 0041 // vim: ts=2 sw=2 et