File indexing completed on 2024-12-22 04:17:51
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 #include "builtinobjects.h" 0014 #include "equationfactory.h" 0015 #include "csdfactory.h" 0016 #include "histogramfactory.h" 0017 #include "psdfactory.h" 0018 #include "eventmonitorfactory.h" 0019 #include "basicpluginfactory.h" 0020 0021 namespace Kst { 0022 namespace Builtins { 0023 void initObjects() { 0024 new EquationFactory; 0025 new CSDFactory; 0026 new HistogramFactory; 0027 new PSDFactory; 0028 new EventMonitorFactory; 0029 new BasicPluginFactory; 0030 } 0031 } 0032 } 0033 0034 // vim: ts=2 sw=2 et